18 lines
598 B
C#
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; }
|
|
}
|
|
}
|