All checks were successful
Build & Deploy Leave Service / build (push) Successful in 1m45s
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
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; }
|
|
public string? OrgRootId { get; set; }
|
|
public string? OrgChild1Id { get; set; }
|
|
public string? OrgChild2Id { get; set; }
|
|
public string? OrgChild3Id { get; set; }
|
|
public string? OrgChild4Id { get; set; }
|
|
|
|
public DateTime? DateStart { get; set; }
|
|
|
|
public DateTime? DateAppoint { get; set; }
|
|
|
|
public string? RootDnaId { get; set; }
|
|
public string? Child1DnaId { get; set; }
|
|
public string? Child2DnaId { get; set; }
|
|
public string? Child3DnaId { get; set; }
|
|
public string? Child4DnaId { get; set; }
|
|
}
|
|
|
|
public class GetProfileByKeycloakIdRootAddTotalDto
|
|
{
|
|
public List<GetProfileByKeycloakIdRootDto> Data { get; set; } = new();
|
|
|
|
public int Total { get; set; }
|
|
}
|
|
}
|