18 lines
556 B
C#
18 lines
556 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractSetDiscountForExtensionRequest
|
|
{
|
|
public Guid TempId { get; set; }
|
|
public int DiscountPercentage { get; set; }
|
|
public double TotalAmount { get; set; }
|
|
public bool IsInstallment { get; set; }
|
|
}
|
|
public class InstitutionContractSetDiscountForCreationRequest
|
|
{
|
|
public Guid TempId { get; set; }
|
|
public int DiscountPercentage { get; set; }
|
|
public double TotalAmount { get; set; }
|
|
public bool IsInstallment { get; set; }
|
|
} |