10 lines
373 B
C#
10 lines
373 B
C#
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractResetDiscountForCreateRequest
|
|
{
|
|
public int DiscountPercentage { get; set; }
|
|
public double TotalAmount { get; set; }
|
|
public bool IsInstallment { get; set; }
|
|
public InstitutionContractDuration Duration { get; set; }
|
|
public double OneMonthAmount { get; set; }
|
|
} |