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 }