hrms-api-backend/BMA.EHR.Application/Responses/Profiles/SearchProfileDto.cs
Suphonchai Phoonsawat 1ae6f5e8d1 fix api
2024-06-20 13:37:25 +07:00

20 lines
506 B
C#

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; }
public Guid? Keycloak { get; set; }
public string? PosNoEmployee { get; set; }
public string? Oc { get; set; }
public string? PosNo { get; set; }
}
}