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

28 lines
621 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}