19 lines
587 B
C#
19 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractExtensionPlanRequest
|
|
{
|
|
public List<WorkshopTempViewModel> WorkshopTemps { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
public Guid TempId { get; set; }
|
|
}
|
|
|
|
public class InstitutionContractCreationPlanRequest
|
|
{
|
|
public List<WorkshopTempViewModel> WorkshopTemps { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
public Guid TempId { get; set; }
|
|
} |