Files
Samuele Locatelli f3d7ae055d CodeMaid vari
2023-03-02 08:46:06 +01:00

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