Files
mixtape/zero.Core/Pages/Models/PageFolder.cs
T
2021-11-24 13:56:08 +01:00

17 lines
364 B
C#

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