Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class ShoppingCartItem
  2. {
  3. public string Name { get; set; }
  4. public decimal Quantity { get; set; }
  5. public decimal Price { get; set; }
  6. public decimal Total { get; set; }
  7. }
  8.  
  9. public class MyShoppingCart
  10. {
  11. public List<ShoppingCartItem> MyShoppingList = new List<ShoppingCartItem>();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement