2024-05-29 13:33:23 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses.Profiles
|
|
|
|
|
|
{
|
|
|
|
|
|
public class SearchProfileDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? Prefix { get; set; }
|
|
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
|
|
public string? CitizenId { get; set; }
|
2024-06-20 13:37:25 +07:00
|
|
|
|
|
|
|
|
|
|
public Guid? Keycloak { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? PosNoEmployee { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? Oc { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? PosNo { get; set; }
|
2024-05-29 13:33:23 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|