11 lines
317 B
C#
11 lines
317 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; }
|
|
} |