Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/RollCallViewModel.cs
2024-08-29 15:00:22 +03:30

27 lines
930 B
C#

using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.RollCall;
public class RollCallViewModel
{
public long Id { get; set; }
public long WorkshopId { get; set; }
public string Reason { get; set; }
public long EmployeeId { get; set; }
public string PersonnelCode { get; set; }
public string EmployeeFullName { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string DateFa { get; set; }
public DateTime DateGr { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public TimeSpan ShiftSpan { get; set; }
public DateTime CreationDate { get; set; }
public string StartDateFa { get; set; }
public string EndDateFa { get; set; }
public IEnumerable<RollCallTimeViewModel> RollCallTimesList { get; set; }
public double TotalWorkingHours { get; set; }
}