19 lines
548 B
C#
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;
|
|
}
|
|
}
|