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

30 lines
688 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 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; }
}
}