Files
GeekDesk/ViewModel/IconfontInfo.cs
2021-12-22 13:14:54 +08:00

48 lines
786 B
C#

using Newtonsoft.Json;
using System;
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;
}
}
public override String ToString()
{
return JsonConvert.SerializeObject(this);
}
}
}