using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace MyCore.Models.Layout { public class PanelSection { public string Label { get; set; } public string Icon { get; set; } public string Color { get; set; } public string DefaultRoute { get; set; } public List Children { get; set; } } public class PanelMenuItem { public string Label { get; set; } public string Route { get; set; } public string Icon { get; set; } public int BadgeValue { get; set; } public string BadgeType { get; set; } public List Children { get; set; } } }