21 lines
618 B
C#
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; }
|
|
}
|
|
|
|
|
|
|
|
}
|