Files
2024-08-29 15:00:22 +03:30

11 lines
264 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.RollCall
{
public class CurrentDayRollCall
{
public List<RollCallViewModel> PresentEmployees { get; set; }
public List<AbsentEmployeeViewModel> AbsentEmployees { get; set; }
}
}