drinkMe/drinkMe/drinkMe.Server.Models/DiscountCode.cs

10 lines
212 B
C#

namespace drinkMe.Server.Models
{
public class DiscountCode
{
public string Code { get; set; }
public float DiscountPercentage { get; set; }
public int[] ApplicableProducts { get; set; }
}
}