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 SubmittedItems { get; set; } public int EmployeesWithoutDocumentCount { get; set; } } }