2021-11-20 13:52:28 +01:00
|
|
|
namespace zero.Routing;
|
2021-11-19 16:11:12 +01:00
|
|
|
|
|
|
|
|
public class PageRoute : BasePageRoute
|
|
|
|
|
{
|
|
|
|
|
public PageRoute() { }
|
|
|
|
|
public PageRoute(Route route) : base(route) { }
|
|
|
|
|
|
|
|
|
|
public IList<Page> Parents { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PageType { get; set; }
|
|
|
|
|
}
|