hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandDeploymentRequest.cs
2024-06-11 11:58:38 +07:00

19 lines
548 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandDeploymentRequest
{
public Guid ProfileId { get; set; } = Guid.Empty;
public string CitizenId { get; set; } = string.Empty;
public string Prefix { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string Position { get; set; } = string.Empty;
public string OrganizationName { get; set; } = string.Empty;
}
}