using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aurora.Frontend.Views.Main { public class NavigationItem { public NavigationItem() { TargetType = typeof(MainContentPage); } public int Id { get; set; } public string Title { get; set; } public Type TargetType { get; set; } } }