hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandRequest.cs
suphonchai Phoonsawat 109016e2b5 Merge remote-tracking branch 'origin/develop' into develop
# Conflicts:
#	BMA.EHR.Placement.Service/appsettings.json
2023-07-20 15:26:44 +07:00

31 lines
765 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandRequest
{
public Guid orderTypeValue { get; set; }
public string orderTitle { get; set; }
public int orderNo { get; set; }
public int orderYear { get; set; }
public Guid orderBy { get; set; }
public string signatoryBy { get; set; }
public string signatoryPosition { get; set; }
public Guid examRound { get; set; }
public string registerPosition { get; set; }
public string conclusionRegisterNo { get; set; }
public DateTime conclusionRegisterDate { get; set; }
public string conclusionResultNo { get; set; }
public DateTime conclusionResultDate { get; set; }
}
}