Files
GeekDesk/ViewModel/IconfontInfo.cs

35 lines
528 B
C#

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