drinkMe/drinkMe/Shared/PurchaseCart.cs
Eugenio Chiodo f537d097ec Init
2021-04-26 15:35:44 +02:00

16 lines
550 B
C#

using System.Collections.Generic;
namespace drinkMe.Shared
{
public class PurchaseCart
{
public bool IsPayedWithCash { get; set; } = false;
public List<CartItem> PurchasingItems { get; set; } = new List<CartItem>();
public List<DiscountCodeViewModel> Discounts { get; set; } = new List<DiscountCodeViewModel>();
public string CreditCardNumber { get; set; }
public string CreditCardExpirationMonth { get; set; }
public string CreditCardExpirationYear { get; set; }
public string CreditCardCVVCode { get; set; }
}
}