hrms-api-backend/BMA.EHR.Application/Responses/Profiles/GetProfileByKeycloakIdRootDto.cs
Bright d692ea4359
Some checks failed
release-dev / release-dev (push) Failing after 11s
report discipline
2025-01-17 15:06:28 +07:00

20 lines
644 B
C#

using BMA.EHR.Domain.Models.HR;
namespace BMA.EHR.Application.Responses.Profiles
{
public class GetProfileByKeycloakIdRootDto
{
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? PosNo { get; set; }
public string? Position { get; set; }
public string? PositionLevel { get; set; }
public string? PositionType { get; set; }
public string? Oc { get; set; }
}
}