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