Files
Backend-Api/CompanyManagement.Infrastructure.Excel/WorkshopsRollCall/WorkshopRollCallExcelViewModel.cs

12 lines
321 B
C#

namespace CompanyManagement.Infrastructure.Excel.WorkshopsRollCall
{
public class WorkshopRollCallExcelViewModel
{
public string WorkshopName { get; set; }
public bool IsActive { get; set; }
public int PersonnelCount { get; set; }
public string EmployerName { get; set; }
}
}