Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/CheckoutDailyRollCallViewModel.cs

27 lines
649 B
C#

using System;
namespace CompanyManagment.App.Contracts.RollCall
{
#region Pooya
public class CheckoutDailyRollCallViewModel
{
public string RollCallDateFa { get; set; }
public string StartDate1 { get; set; }
public string EndDate1 { get; set; }
public string StartDate2 { get; set; }
public string EndDate2 { 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
}