22 lines
484 B
C#
22 lines
484 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Collections.ObjectModel;
|
|||
|
|
|||
|
namespace Aurora.Frontend.Components.NavigationMenu
|
|||
|
{
|
|||
|
public class NavigationGroupItem : List<NavigationItem>
|
|||
|
{
|
|||
|
public NavigationGroupItem()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public NavigationGroupItem(string heading)
|
|||
|
{
|
|||
|
GroupHeading = heading;
|
|||
|
}
|
|||
|
|
|||
|
public List<NavigationItem> Items => this;
|
|||
|
public string GroupHeading { get; set; }
|
|||
|
}
|
|||
|
}
|