17 lines
483 B
C#
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; }
|
|
}
|
|
}
|