9 lines
227 B
C#
9 lines
227 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractResetDiscountForExtensionRequest
|
|
{
|
|
public Guid TempId { get; set; }
|
|
public bool IsInstallment { get; set; }
|
|
} |