Files
Backend-Api/CompanyManagment.App.Contracts/WorkingHoursTempItem/CreateWorkingHoursTempItem.cs
2024-07-05 21:36:15 +03:30

21 lines
642 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.WorkingHoursTempItem;
public class CreateWorkingHoursTempItem
{
public string WeekNumber { get; set; }
public string DayOfWork { get; set; }
public string Start1 { get; set; }
public string End1 { get; set; }
public string RestTime { get; set; }
public string Start2 { get; set; }
public string End2 { get; set; }
public string ComplexStart { get; set; }
public string ComplexEnd { get; set; }
public long WorkingHoursTempId { get; set; }
}