16 lines
362 B
C#
16 lines
362 B
C#
namespace BMA.EHR.Leave.Service.DTOs.ChangeRound
|
|
{
|
|
public class ChangeRoundHistoryDto
|
|
{
|
|
|
|
public int Round { get; set; }
|
|
|
|
public string StartTimeMorning { get; set; }
|
|
|
|
public string LeaveTimeAfternoon { get; set; }
|
|
|
|
public DateTime EffectiveDate { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|