IconfontInfo.cs 645 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GeekDesk.ViewModel
  7. {
  8. public class IconfontInfo
  9. {
  10. private string text;
  11. private string name;
  12. public string Text
  13. {
  14. get
  15. {
  16. return text;
  17. }
  18. set
  19. {
  20. text = value;
  21. }
  22. }
  23. public string Name
  24. {
  25. get
  26. {
  27. return name;
  28. }
  29. set
  30. {
  31. name = value;
  32. }
  33. }
  34. }
  35. }