2020-08-31 14:33:31 +02:00
|
|
|
using zero.Core.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace zero.Core.Entities
|
2020-04-29 13:18:53 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A list item can consist of unlimited properties and be rendered as you wish
|
|
|
|
|
/// The backoffice rendering is done by an IRenderer
|
|
|
|
|
/// </summary>
|
2020-08-31 14:33:31 +02:00
|
|
|
public class SpaceContent : ZeroEntity, ISpaceContent
|
2020-04-29 13:18:53 +02:00
|
|
|
{
|
2020-08-31 14:33:31 +02:00
|
|
|
/// <inheritdoc />
|
2020-05-01 14:07:09 +02:00
|
|
|
public string SpaceAlias { get; set; }
|
2020-04-29 13:18:53 +02:00
|
|
|
}
|
2020-08-31 14:33:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A list item can consist of unlimited properties and be rendered as you wish
|
|
|
|
|
/// The backoffice rendering is done by an IRenderer
|
|
|
|
|
/// </summary>
|
2020-11-16 16:03:22 +01:00
|
|
|
[Collection("SpaceContents", LongId = true)]
|
2020-11-14 12:34:26 +01:00
|
|
|
public interface ISpaceContent : IZeroEntity, IZeroDbConventions
|
2020-08-31 14:33:31 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Associated space
|
|
|
|
|
/// </summary>
|
|
|
|
|
string SpaceAlias { get; set; }
|
|
|
|
|
}
|
2020-04-29 13:18:53 +02:00
|
|
|
}
|