Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Cart
  2. {
  3. public List<CartItem> CartItems { get; set; } = new List<CartItem>();
  4. }
  5.  
  6. public class CartItem
  7. {
  8. public Guid ItemId { get; set; }
  9. public int Quantity { get; set; }
  10. public decimal Price { get; set; }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement