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

30 lines
688 B
C#
Raw Permalink Normal View History

namespace DepartmentBusinessLogic.HelperModels
{
/// <summary>
/// Класс-модель для приказа по студенту из 1С
/// </summary>
public class StudentOrderSyncModel
{
public string clericNumber { get; set; }
public string clericDate { get; set; }
public string markOfDeletion { get; set; }
public string markOfApprove { get; set; }
public string orderTypeName { get; set; }
public string orderSubTypeName { get; set; }
public string groupNameBefore { get; set; }
public string groupNameAfter { get; set; }
public string dateStart { get; set; }
public string dateEnd { get; set; }
public string reason { get; set; }
}
}