2020-03-06 17:09:57 +01:00

28 lines
728 B
C#

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<PanelMenuItem> 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<PanelMenuItem> Children { get; set; }
}
}