Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/RollCallViewModel.cs
2024-07-21 21:05:30 +03:30

17 lines
516 B
C#

using System;
namespace CompanyManagment.App.Contracts.RollCall;
public class RollCallViewModel
{
public long Id { get; set; }
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public string EmployeeFullName { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public TimeSpan ShiftSpan { get; set; }
public DateTime CreationDate { get; set; }
}