hrms-api-backend/BMA.EHR.Leave.Service/DTOs/ChangeRound/SearchProfileResultDto.cs
Suphonchai Phoonsawat 2bf43a52b5 change round
2023-11-23 15:48:09 +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; }
}
}