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

28 lines
763 B
C#
Raw Permalink Normal View History

namespace BMA.EHR.Command.Service.Requests
{
public class UpdateCommandGroup2Request
{
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 conclusionMeetingNo { get; set; } = string.Empty;
public DateTime conclusionMeetingDate { get; set; }
}
}