Advertisement
Guest User

Untitled

a guest
May 27th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class Cart
  2. {
  3. public int Id { get; set; }
  4. public int ProductId { get; set; }
  5. public string CartId { get; set; }
  6. public int Count { get; set; }
  7. public virtual Product Product { get; set; }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement