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

17 lines
458 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 : ZeroEntity, IAppAwareEntity, IZeroDbConventions
{
/// <summary>
/// Associated space
/// </summary>
public string SpaceAlias { get; set; }
/// <inheritdoc />
public string AppId { get; set; }
}
}