PSTW_CentralizeSystem/Areas/OTcalculate/Models/OvertimeRequestDto.cs
2025-04-21 17:24:48 +08:00

21 lines
618 B
C#

namespace PSTW_CentralSystem.Areas.OTcalculate.Models
{
public class OvertimeRequestDto
{
public DateTime OtDate { get; set; }
public string? OfficeFrom { get; set; }
public string? OfficeTo { get; set; }
public int? OfficeBreak { get; set; }
public string? AfterFrom { get; set; }
public string? AfterTo { get; set; }
public int? AfterBreak { get; set; }
public int? StationId { get; set; }
public string OtDescription { get; set; }
public string OtDays { get; set; }
public int UserId { get; set; }
}
}