Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
160
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 Item
  2. {
  3. public string Nome {get;set;}
  4. public decimal Valor {get;set;}
  5.  
  6. public ICollection<SubItem> SubItens {get;set;}
  7. }
  8.  
  9. public class SubItem
  10. {
  11. public string Nome {get;set;}
  12. public decimal Valor {get;set;}
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement