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 abstract class Page : ZeroEntity, IAppAwareEntity, IZeroDbConventions
{
///
public string AppId { get; set; }
}
}