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

20 lines
548 B
C#
Raw Permalink Normal View History

2023-07-28 15:04:26 +07:00
namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandDeploymentRequest
{
public Guid ProfileId { get; set; } = Guid.Empty;
2024-06-11 11:58:38 +07:00
public string CitizenId { get; set; } = string.Empty;
2023-07-28 15:04:26 +07:00
2024-06-11 11:58:38 +07:00
public string Prefix { get; set; } = string.Empty;
2023-07-28 15:04:26 +07:00
2024-06-11 11:58:38 +07:00
public string FirstName { get; set; } = string.Empty;
2023-07-28 15:04:26 +07:00
2024-06-11 11:58:38 +07:00
public string LastName { get; set; } = string.Empty;
2023-07-28 15:04:26 +07:00
2024-06-11 11:58:38 +07:00
public string Position { get; set; } = string.Empty;
2023-07-28 15:04:26 +07:00
2024-06-11 11:58:38 +07:00
public string OrganizationName { get; set; } = string.Empty;
2023-07-28 15:04:26 +07:00
}
}