You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
815 B
25 lines
815 B
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; }
|
|
}
|
|
}
|
|
|