inventory_mobile/pstw_centralizesystem/Areas/OTcalculate/Models/OvertimeRequestDto.cs
2025-12-15 15:35:35 +08:00

22 lines
661 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; }
public int? StatusId { get; set; }
}
}