Files
mixtape/zero.Core/Entities/Spaces/SpaceContent.cs
T
2020-05-03 16:21:37 +02:00

14 lines
339 B
C#

using Newtonsoft.Json;
using System;
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; }
}
}