22 lines
657 B
C#
22 lines
657 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 OutsideFrom { get; set; }
|
|
public string OutsideTo { get; set; }
|
|
public int? OutsideBreak { get; set; }
|
|
public int? StationId { get; set; }
|
|
public string OtDescription { get; set; }
|
|
public string OtDays { get; set; }
|
|
public int UserId { get; set; }
|
|
public IFormFile File { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|