Files
mixtape/zero.Core/Pages/Entities/PageFolder.cs
T
2021-11-20 13:52:28 +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; }
}