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 /// public class SpaceContent : ZeroEntity, ISpaceContent { /// public string SpaceAlias { get; set; } } /// /// A list item can consist of unlimited properties and be rendered as you wish /// The backoffice rendering is done by an IRenderer /// [Collection("SpaceContents", LongId = true)] public interface ISpaceContent : IZeroEntity, IZeroDbConventions { /// /// Associated space /// string SpaceAlias { get; set; } } }