Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeDocuments/WorkshopWithEmployeeDocumentsViewModel.cs
2025-02-18 16:16:33 +03:30

18 lines
598 B
C#

using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.EmployeeDocuments
{
public class WorkshopWithEmployeeDocumentsViewModel
{
public long WorkshopId { get; set; }
public string WorkshopFullName { get; set; }
public int SubmittedItemsCount { get; set; }
public DateTime LastUploadDateTime { get; set; }
public string LastUploadDateTimeFa { get; set; }
public string EmployerName { get; set; }
public List<EmployeeDocumentItemViewModel> SubmittedItems { get; set; }
public int EmployeesWithoutDocumentCount { get; set; }
}
}