Files
GeekDesk/ViewModel/IconfontInfo.cs
2021-07-07 17:28:29 +08:00

41 lines
645 B
C#

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;
}
}
}
}