2024-06-20 13:37:25 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses.Profiles
|
|
|
|
|
|
{
|
|
|
|
|
|
public class GetUserOCIdDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid ProfileId { get; set; }
|
|
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? Prefix { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? Rank { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? Avatar { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? FirstName { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? LastName { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? CitizenId { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public DateTime? BirthDate { get; set; } = DateTime.MinValue;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? Position { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
|
|
|
|
|
public Guid RootId { get; set; }
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public Guid? RootDnaId { get; set; }
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? Root { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
2025-04-17 23:09:37 +07:00
|
|
|
|
public string? RootShortName { get; set; } = string.Empty;
|
2024-06-20 13:37:25 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|