15 lines
498 B
C#
15 lines
498 B
C#
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractExtensionPaymentResponse
|
|
{
|
|
public InstitutionContractPaymentOneTimeViewModel OneTime { get; set; }
|
|
public InstitutionContractPaymentMonthlyViewModel Monthly { get; set; }
|
|
|
|
}
|
|
|
|
public class InstitutionContractCreationPaymentResponse
|
|
{
|
|
public InstitutionContractPaymentOneTimeViewModel OneTime { get; set; }
|
|
public InstitutionContractPaymentMonthlyViewModel Monthly { get; set; }
|
|
|
|
} |