2020-10-23 15:50:59 +02:00
|
|
|
using System.Collections.Generic;
|
2020-10-21 14:11:58 +02:00
|
|
|
using zero.Core.Entities;
|
|
|
|
|
|
|
|
|
|
namespace zero.Core.Routing
|
|
|
|
|
{
|
2021-02-08 15:45:25 +01:00
|
|
|
public class PageRoute : BasePageRoute
|
2020-10-21 14:11:58 +02:00
|
|
|
{
|
2020-11-07 14:32:46 +01:00
|
|
|
public PageRoute() { }
|
2021-05-04 17:23:52 +02:00
|
|
|
public PageRoute(Route route) : base(route) { }
|
2020-10-21 14:11:58 +02:00
|
|
|
|
2021-05-04 17:23:52 +02:00
|
|
|
public IList<Page> Parents { get; set; }
|
2021-11-04 23:46:41 +01:00
|
|
|
|
|
|
|
|
public string PageType { get; set; }
|
2020-10-21 14:11:58 +02:00
|
|
|
}
|
|
|
|
|
}
|