mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
28 lines
728 B
C#
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; }
|
|
}
|
|
|
|
}
|