21 lines
546 B
C#
21 lines
546 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; }
|
|
}
|
|
}
|