10 lines
232 B
C#
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; }
|
|
}
|
|
}
|