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