Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. private class ItemOfGrid
  2. {
  3. public ItemOfGrid(string name, string className)
  4. {
  5. Name = name;
  6. ClassName = className;
  7. }
  8.  
  9. public string Name { get; set; }
  10. public string ClassName { get; set; }
  11. }
Add Comment
Please, Sign In to add comment