16 lines
460 B
C#
16 lines
460 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCallEmployeeStatus
|
|
{
|
|
public class RollCallEmployeeStatusViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string StartDate { get; set; }
|
|
public string EndDate { get; set; }
|
|
public DateTime StartDateGr { get; set; }
|
|
public DateTime EndDateGr { get; set; }
|
|
}
|
|
}
|