14 lines
270 B
C#
14 lines
270 B
C#
using System.Collections.Generic;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Core.Routing
|
|
{
|
|
public class PageRoute : BasePageRoute
|
|
{
|
|
public PageRoute() { }
|
|
public PageRoute(Route route) : base(route) { }
|
|
|
|
public IList<Page> Parents { get; set; }
|
|
}
|
|
}
|