Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace warmup_cleancode
  5. {
  6. /// <summary>
  7. /// Description of Item.
  8. /// </summary>
  9. public class Item
  10. {
  11. public string Name { get; set; }
  12. public List<Row> List { get; set; }
  13.  
  14. public Item()
  15. {
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement