hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandGroup5Request.cs
2023-08-25 10:32:43 +07:00

33 lines
935 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup5Request
{
public Guid orderTypeValue { get; set; }
public string orderTitle { get; set; } = string.Empty;
public string orderNo { get; set; } = string.Empty;
public int orderYear { get; set; }
public DateTime orderDate { get; set; }
public Guid orderBy { get; set; }
public string orderByOrganizationName { get; set; } = string.Empty;
public string signatoryBy { get; set; } = string.Empty;
public string signatoryPosition { get; set; } = string.Empty;
public string conclusionReturnNo { get; set; } = string.Empty;
public DateTime conclusionReturnDate { get; set; }
public string sourceOrganizationName { get; set; }
public string militaryCommandNo { get; set; }
public DateTime militaryCommandDate { get; set; }
}
}