drinkMe/drinkMe/Shared/DiscountCodeViewModel.cs

10 lines
215 B
C#

namespace drinkMe.Shared
{
public class DiscountCodeViewModel
{
public string Code { get; set; }
public float DiscountPercentage { get; set; }
public int[] ApplicableProducts { get; set; }
}
}