13 lines
408 B
C#
13 lines
408 B
C#
namespace WorkFlow.Application.Contracts.AdminWorkFlow
|
|
{
|
|
public class AdminWorkFlowNumbersViewModel
|
|
{
|
|
public int InsuranceWithoutContractCount { get; set; }
|
|
|
|
//مدارک در انتظار ادمین
|
|
public int EmployeeDocumentsAwaitingSubmit { get; set; }
|
|
public int StartWorkCount { get; set; }
|
|
public int NewEmployeesAwaitingUpload { get; set; }
|
|
}
|
|
}
|