Files
mixtape/zero.Core/Routing/Page/PageRoute.cs
T
2021-11-04 23:46:41 +01:00

16 lines
312 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; }
public string PageType { get; set; }
}
}