Files
mixtape/zero.Core/Entities/Spaces/SpaceContent.cs
T

17 lines
420 B
C#
Raw Normal View History

2020-08-31 14:33:31 +02:00
using zero.Core.Attributes;
namespace zero.Core.Entities
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>
2021-03-03 12:49:06 +01:00
[Collection("SpaceContents")]
2021-05-04 17:23:52 +02:00
public class SpaceContent : ZeroEntity
2020-08-31 14:33:31 +02:00
{
/// <summary>
/// Associated space
/// </summary>
2021-05-04 17:23:52 +02:00
public string SpaceAlias { get; set; }
2020-08-31 14:33:31 +02:00
}
2020-04-29 13:18:53 +02:00
}