12 lines
321 B
C#
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; }
|
|
}
|
|
}
|
|
|