Files
mixtape/zero.Core/Entities/Preview.cs
T
2021-05-04 17:23:52 +02:00

19 lines
368 B
C#

using zero.Core.Attributes;
namespace zero.Core.Entities
{
[Collection("Previews")]
public class Preview : ZeroEntity
{
/// <summary>
/// Id of the original entity
/// </summary>
public string OriginalId { get; set; }
/// <summary>
/// Contains the entity content
/// </summary>
public ZeroEntity Content { get; set; }
}
}