IconfontInfo.cs 528 B

12345678910111213141516171819202122232425262728293031323334
  1. namespace GeekDesk.ViewModel
  2. {
  3. public class IconfontInfo
  4. {
  5. private string text;
  6. private string name;
  7. public string Text
  8. {
  9. get
  10. {
  11. return text;
  12. }
  13. set
  14. {
  15. text = value;
  16. }
  17. }
  18. public string Name
  19. {
  20. get
  21. {
  22. return name;
  23. }
  24. set
  25. {
  26. name = value;
  27. }
  28. }
  29. }
  30. }