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.
28 lines
854 B
28 lines
854 B
3 months ago
|
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; }
|
||
|
|
||
|
}
|
||
|
}
|