Files
mixtape/zero.Core/Routing/PageRoute.cs
T

24 lines
398 B
C#
Raw Normal View History

2020-10-21 14:11:58 +02:00
using System;
using System.Collections.Generic;
using System.Text;
using zero.Core.Entities;
namespace zero.Core.Routing
{
2020-10-21 15:16:47 +02:00
public class PageRoute : IResolvedRoute
2020-10-21 14:11:58 +02:00
{
2020-10-21 15:16:47 +02:00
public PageRoute() { }
2020-10-21 14:11:58 +02:00
2020-10-21 15:16:47 +02:00
public PageRoute(IRoute route)
2020-10-21 14:11:58 +02:00
{
Route = route;
}
public IPage Page { get; set; }
public IList<IPage> Parents { get; set; }
public IRoute Route { get; set; }
}
}