9 lines
310 B
C#
9 lines
310 B
C#
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class GetInstitutionVerificationDetailsWorkshopsViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
public int PersonnelCount { get; set; }
|
|
public WorkshopServicesViewModel Services { get; set; }
|
|
public string Price { get; set; }
|
|
} |