11 lines
298 B
C#
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; }
|
|
|
|
} |