22 lines
478 B
C#
22 lines
478 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Aurora.Frontend.Views.Main;
|
|
|
|
namespace Aurora.Frontend.Views.Components.NavigationMenu
|
|
{
|
|
public class NavigationItem
|
|
{
|
|
public NavigationItem()
|
|
{
|
|
}
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Group { get; set; }
|
|
|
|
public Type TargetType { get; set; }
|
|
}
|
|
}
|