2021-11-23 15:43:21 +01:00
|
|
|
namespace zero.Models;
|
2021-11-23 12:35:18 +01:00
|
|
|
|
|
|
|
|
[RavenCollection("Previews")]
|
|
|
|
|
public class ZeroEntityPreview : ZeroEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Id of the original entity
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OriginalId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Contains the entity content
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ZeroEntity Content { get; set; }
|
|
|
|
|
}
|