Files
mixtape/zero.Core/Entities/Spaces/SpaceContent.cs
T
2020-10-05 15:10:40 +02:00

28 lines
767 B
C#

using zero.Core.Attributes;
namespace zero.Core.Entities
{
/// <summary>
/// A list item can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
/// </summary>
public class SpaceContent : ZeroEntity, ISpaceContent
{
/// <inheritdoc />
public string SpaceAlias { get; set; }
}
/// <summary>
/// A list item can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
/// </summary>
[Collection("SpaceContents")]
public interface ISpaceContent : IZeroEntity, IAppAwareShareableEntity, IZeroDbConventions
{
/// <summary>
/// Associated space
/// </summary>
string SpaceAlias { get; set; }
}
}