namespace CompanyManagment.App.Contracts.RollCall; public class AbsentEmployeeViewModel { public long EmployeeId { get; set; } public string EmployeeFullName { get; set; } public string PersonnelCode { get; set; } public bool HasLeave { get; set; } public string Reason { get; set; } }