12345678910111213141516171819202122232425262728293031323334 |
- namespace GeekDesk.ViewModel
- {
- public class IconfontInfo
- {
- private string text;
- private string name;
- public string Text
- {
- get
- {
- return text;
- }
- set
- {
- text = value;
- }
- }
- public string Name
- {
- get
- {
- return name;
- }
- set
- {
- name = value;
- }
- }
- }
- }
|