using System; using System.Collections.Generic; #nullable disable namespace Teso_API.Models { public partial class ProximityCoupon { public string CouponId { get; set; } public TesoBusinessDetail Business { get; set; } public string targetName { get; set; } public string targetID { get; set; } public string targetImage { get; set; } public string targetDescription { get; set; } public decimal? targetCost { get; set; } public string Type { get; set; } public int? Quantity { get; set; } public DateTime? Expiration { get; set; } public double LowerLimit { get; set; } public double UpperLimit { get; set; } public string State { get; set; } public string condition { get; set; } } }