IProduct.cs•632 B
using System.Collections.Generic;
namespace Api.DigitalPages.Interfaces.Models
{
public interface IProduct : IBaseModelV3, IRestrictedDataV4<IProductAuthorization>
{
string Name { get; set; }
string UniqueName { get; set; }
string Currency { get; set; }
double Amount { get; set; }
ProductType Type { get; set; }
int? MaxInstallments { get; set; }
List<double> InstallmentsTax { get; set; }
}
public enum ProductType
{
Undefined,
Consumable,
NotConsumable,
Subscription,
Voucher,
Campaign
}
}