Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/CheckoutDailyRollCallViewModel.cs
2024-09-08 20:33:16 +03:30

25 lines
549 B
C#

using System;
namespace CompanyManagment.App.Contracts.RollCall
{
#region Pooya
public class CheckoutDailyRollCallViewModel
{
public string RollCallDateFa { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
public DateTime DateTimeGr { get; set; }
//منقطع بودن شیفت کاری
public bool IsSliced { get; set; }
public TimeSpan TotalhourseSpan { get; set; }
public string TotalWorkingHours { get; set; }
public string DayOfWeek { get; set; }
}
#endregion
}