using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace Teso_API.Models { public partial class CouponDetails { public string CouponId { get; set; } public string BusinessId { get; set; } public string Type { get; set; } public int? Quantity { get; set; } public DateTime? Expiration { get; set; } public double Worth { get; set; } public string State { get; set; } public string ProductCost { get; set; } public TesoBusinessDetail Issuer { get; set; } public Product Target { get; set; } public double lowerLimit { get; set; } public double upperLimit { get; set; } public string countID { get; set; } public string condition { get; set; } } }