namespace zero.Core.Entities
{
///
/// A list item can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
///
public class SpaceContent : ZeroEntity, IAppAwareEntity, IZeroDbConventions
{
///
/// Associated space
///
public string SpaceAlias { get; set; }
///
public string AppId { get; set; }
}
}