hrms-api-backend/BMA.EHR.Leave/DTOs/ChangeRound/SearchProfileResultDto.cs
2024-07-10 10:46:26 +07:00

17 lines
412 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 StartTimeMorning { get; set; }
public string LeaveTimeAfterNoon { get;set; }
public DateTime? EffectiveDate { get; set; }
}
}