10 lines
260 B
C#
10 lines
260 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; }
|
|
} |