Files
Backend-Api/CompanyManagment.App.Contracts/RollCallEmployeeStatus/RollCallEmployeeStatusViewModel.cs
2024-08-29 15:00:22 +03:30

10 lines
232 B
C#

namespace CompanyManagment.App.Contracts.RollCallEmployeeStatus
{
public class RollCallEmployeeStatusViewModel
{
public long Id { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
}
}