18 lines
499 B
C#
18 lines
499 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractExtensionCompleteRequest
|
|
{
|
|
public Guid TemporaryId { get; set; }
|
|
public bool IsInstallment { get; set; }
|
|
public long LawId { get; set; }
|
|
public bool CancelSendVerificationSms { get; set; }
|
|
}
|
|
|
|
public class InstitutionContractCreationCompleteRequest
|
|
{
|
|
public Guid TemporaryId { get; set; }
|
|
public bool IsInstallment { get; set; }
|
|
public long LawId { get; set; }
|
|
} |