drinkMe/drinkMe/Shared/DiscountCodeViewModel.cs

10 lines
215 B
C#
Raw Normal View History

2021-04-26 15:35:44 +02:00
namespace drinkMe.Shared
{
public class DiscountCodeViewModel
{
public string Code { get; set; }
public float DiscountPercentage { get; set; }
public int[] ApplicableProducts { get; set; }
}
}