14 lines
248 B
C#
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; }
|
|
|
|
|
|
}
|
|
}
|