Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public int Id { get; private set; }
  2. public string Name { get; private set; }
  3.  
  4. public ComboboxValue(int id, string name)
  5. {
  6. Id = id;
  7. Name = name;
  8. }
  9.  
  10. public override string ToString()
  11. {
  12. return Name;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement