Files
mixtape/zero.Core/Entities/Pages/Page.cs
T
2020-05-19 15:53:01 +02:00

22 lines
568 B
C#

namespace zero.Core.Entities
{
/// <summary>
/// A page can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
/// </summary>
public class Page : ZeroEntity, IAppAwareEntity, IZeroDbConventions
{
/// <summary>
/// Id of the parent page
/// </summary>
public string ParentId { get; set; }
/// <summary>
/// Alias of the used page type
/// </summary>
public string PageTypeAlias { get; set; }
/// <inheritdoc />
public string AppId { get; set; }
}
}