16 lines
550 B
C#
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; }
|
|
}
|
|
}
|