Files
Backend-Api/CompanyManagment.App.Contracts/RollCallEmployee/AdjustRollCallEmployeesWithEmployeeLeftWork.cs
2024-12-07 18:57:44 +03:30

11 lines
252 B
C#

using System;
namespace CompanyManagment.App.Contracts.RollCallEmployee
{
public class AdjustRollCallEmployeesWithEmployeeLeftWork
{
public DateTime LeaveDate { get; set; }
public long RollCallStatusId { get; set; }
}
}