20 lines
526 B
C#
20 lines
526 B
C#
|
|
namespace BMA.EHR.Command.Service.Requests
|
|||
|
|
{
|
|||
|
|
public class CreateCommandDeploymentRequest
|
|||
|
|
{
|
|||
|
|
public Guid ProfileId { get; set; } = Guid.Empty;
|
|||
|
|
|
|||
|
|
public string IdCard { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public Guid PrefixId { get; set;} = Guid.Empty;
|
|||
|
|
|
|||
|
|
public string FirstName { get; set;} = string.Empty;
|
|||
|
|
|
|||
|
|
public string LastName { get; set;} = string.Empty;
|
|||
|
|
|
|||
|
|
public string Position { get; set;} = string.Empty;
|
|||
|
|
|
|||
|
|
public string Unit { get; set;} = string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|