namespace zero.Pages;
///
/// A module can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
///
public class PageModule : ZeroIdEntity
{
///
/// Sort order
///
public uint Sort { get; set; }
///
/// Whether the module is visible in the frontend
///
public bool IsActive { get; set; }
///
/// Alias of the used module type
///
public string ModuleTypeAlias { get; set; }
}