28 lines
621 B
C#
28 lines
621 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|