Files
mixtape/zero.Core/Pages/Models/PageFolder.cs
T

17 lines
364 B
C#
Raw Normal View History

2021-11-20 13:52:28 +01:00
namespace zero.Pages;
2021-11-19 16:11:12 +01:00
/// <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; }
}