hrms-api-backend/BMA.EHR.Leave/DTOs/ChangeRound/SearchProfileResultDto.cs

18 lines
412 B
C#
Raw Normal View History

2023-11-23 15:48:09 +07:00
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; }
}
}