16 lines
408 B
C#
16 lines
408 B
C#
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall
|
|
{
|
|
public class EmployeeRollCallsViewModel
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
public string DateFa { get; set; }
|
|
public List<RollCallViewModel> RollCalls { get; set; }
|
|
public List<RollCallEditableDatesForManualEditViewModel> EditableDates { get; set; }
|
|
}
|
|
}
|