Files
mixtape/zero.Core/Routing/Page/PageRoute.cs
T
2021-05-04 17:23:52 +02:00

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; }
}
}