Files
mixtape/zero.Core/Entities/Spaces/SpaceContent.cs
T
2020-05-01 14:07:09 +02:00

11 lines
301 B
C#

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 : DatabaseEntity
{
public string SpaceAlias { get; set; }
}
}