Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/RollCallViewModel.cs
2025-01-19 15:53:36 +03:30

38 lines
1.3 KiB
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 string DateFa { get; set; }
public DateTime DateGr { get; set; }
public string StartDayOfWeekFa { get; set; }
public string EndDayOfWeekFa { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public DateTime ShiftDate { 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 TimeSpan TotalWorkingHoursSpan { get; set; }
public string TotalWorkingHours { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public bool IsAbsent { get; set; }
public bool HasLeave { get; set; }
public string DayOfWeekFa { get; set; }
public bool IsHoliday { get; set; }
public string EndTimeString { get; set; }
public string StartTimeString { get; set; }
}