hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandGroup13Request.cs

20 lines
848 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup13Request
{
public string caseFault { get; set; }
public string faultLevel { get; set; }
public string refRaw { get; set; }
public string result { get; set; }
public Guid orderBy { get; set; }
public string orderByOrganizationName { get; set; } = string.Empty;
public DateTime orderDate { get; set; }
public string orderTitle { get; set; } = string.Empty;
public string orderNo { get; set; } = string.Empty;
public Guid orderTypeValue { get; set; }
public int orderYear { get; set; }
public string signatoryBy { get; set; } = string.Empty;
public string signatoryPosition { get; set; } = string.Empty;
public Guid? complaintId { get; set; }
}
}