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 linkChildren { get; set; } = new List(); public string Title { get; set; } = "Link"; #endregion Public Properties } }