10 lines
337 B
C#
10 lines
337 B
C#
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractExtensionWorkshopsResponse
|
|
{
|
|
public List<WorkshopTempViewModel> WorkshopTemps { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
} |