All checks were successful
Build & Deploy Leave Service / build (push) Successful in 1m45s
27 lines
790 B
C#
27 lines
790 B
C#
namespace BMA.EHR.Leave.Service.DTOs.ChangeRound
|
|
{
|
|
public class SearchProfileResultDto
|
|
{
|
|
public Guid ProfileId { get; set; }
|
|
|
|
public string CitizenId { get; set; }
|
|
|
|
public string FullName { get; set; }
|
|
|
|
public string? Prefix { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
|
|
public string StartTimeMorning { get; set; }
|
|
|
|
public string LeaveTimeAfterNoon { get;set; }
|
|
|
|
public DateTime? EffectiveDate { 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; }
|
|
}
|
|
}
|