All checks were successful
Build & Deploy Discipline Service / build (push) Successful in 2m16s
34 lines
1 KiB
C#
34 lines
1 KiB
C#
namespace BMA.EHR.Application.Responses.Profiles
|
|
{
|
|
public class GetUserOCIdDto
|
|
{
|
|
public Guid ProfileId { get; set; }
|
|
|
|
public string? Prefix { get; set; } = string.Empty;
|
|
|
|
public string? Rank { get; set; } = string.Empty;
|
|
|
|
public string? Avatar { get; set; } = string.Empty;
|
|
|
|
public string? FirstName { get; set; } = string.Empty;
|
|
|
|
public string? LastName { get; set; } = string.Empty;
|
|
|
|
public string? CitizenId { get; set; } = string.Empty;
|
|
|
|
public DateTime? BirthDate { get; set; } = DateTime.MinValue;
|
|
|
|
public string? Position { get; set; } = string.Empty;
|
|
|
|
public Guid RootId { get; set; }
|
|
public Guid? RootDnaId { get; set; }
|
|
public Guid? Child1DnaId { get; set; }
|
|
public Guid? Child2DnaId { get; set; }
|
|
public Guid? Child3DnaId { get; set; }
|
|
public Guid? Child4DnaId { get; set; }
|
|
|
|
public string? Root { get; set; } = string.Empty;
|
|
|
|
public string? RootShortName { get; set; } = string.Empty;
|
|
}
|
|
}
|