Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/AbsentEmployeeViewModel.cs
2024-09-08 20:33:16 +03:30

11 lines
298 B
C#

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; }
}