Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1.     class Product
  2.     {
  3.         public int Id { get; set; }
  4.         public string Ingredient { get; set; }
  5.         public string Quantity { get; set; }
  6.         public string Unit { get; set; }
  7.         public string UnitPrice { get; set; }
  8.         public string TotalPrice { get; set; }
  9.         public string PortionPrice { get; set; }
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement