15 lines
422 B
C#
15 lines
422 B
C#
namespace StockMan.CORE.Data
|
|
{
|
|
public class LinkMan
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Css { get; set; } = "";
|
|
public bool hasChildren { get; set; } = false;
|
|
public string Icon { get; set; } = "";
|
|
public List<string> linkChildren { get; set; } = new List<string>();
|
|
public string Title { get; set; } = "Link";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |