DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/HelperModels/StudentSyncModel.cs

28 lines
621 B
C#
Raw Normal View History

namespace DepartmentBusinessLogic.HelperModels
{
/// <summary>
/// Класс-модель для студента из 1С
/// </summary>
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; }
}
}