namespace DepartmentBusinessLogic.HelperModels { /// /// Класс-модель для студента из 1С /// public class StudentSyncModel { public string iduniv { get; set; } public string recordBookName { get; set; } public string lastName { get; set; } public string firstName { get; set; } public string patronymicName { get; set; } public string groupName { get; set; } public string studyFormName { get; set; } public string stateName { get; set; } public string payBasisName { get; set; } public string presenatationOfRecordBook { get; set; } } }