Files
mixtape/zero.Core/Routing/Page/PageRoute.cs
T
2020-11-07 14:32:46 +01:00

22 lines
365 B
C#

using System.Collections.Generic;
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; }
}
}