Files
2024-08-29 15:00:22 +03:30

14 lines
248 B
C#

using System;
namespace CompanyManagment.App.Contracts.RollCallEmployeeStatus
{
public class EditRollCallEmployeeStatus
{
public long Id { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
}
}