This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
2019-05-17 18:21:02 -04:00

21 lines
431 B
C#

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; }
}
}