using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aurora.Design.Views.Main;

namespace Aurora.Design.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; }
        public Type TargetViewModelType { get; set; }

    }
}