2021-12-22 13:14:54 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System;
|
2021-07-07 17:28:29 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-12-22 13:14:54 +08:00
|
|
|
|
|
|
|
|
|
|
public override String ToString()
|
|
|
|
|
|
{
|
|
|
|
|
|
return JsonConvert.SerializeObject(this);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-07 17:28:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|