24 lines
398 B
C#
24 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Core.Routing
|
|
{
|
|
public class PageRoute : IResolvedRoute
|
|
{
|
|
public PageRoute() { }
|
|
|
|
public PageRoute(IRoute route)
|
|
{
|
|
Route = route;
|
|
}
|
|
|
|
public IPage Page { get; set; }
|
|
|
|
public IList<IPage> Parents { get; set; }
|
|
|
|
public IRoute Route { get; set; }
|
|
}
|
|
}
|