namespace zero.Pages;
///
/// A page folder is used to group pages together but should not contain any content
///
public sealed class PageFolder : Page
{
public PageFolder()
{
IsActive = true;
}
///
/// Whether this folder is included in route building
///
public bool IsPartOfRoute { get; set; }
}