using zero.Core.Attributes;
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
///
[Collection("SpaceContents")]
public class SpaceContent : ZeroEntity
{
///
/// Associated space
///
public string SpaceAlias { get; set; }
}
}