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

17 lines
483 B
C#

using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.RollCall
{
public class RollCallsByDateViewModel
{
public string DateFa { get; set; }
public DateTime DateGr { get; set; }
public IEnumerable<RollCallViewModel> ActiveEmployees { get; set; }
public int ActiveEmployeesCount { get; set; }
public string DayOfWeekFa { get; set; }
public bool IsHoliday { get; set; }
public bool IsFriday { get; set; }
}
}