namespace zero.Models;
[RavenCollection("Previews")]
public class ZeroEntityPreview : ZeroEntity
{
///
/// Id of the original entity
///
public string OriginalId { get; set; }
///
/// Contains the entity content
///
public ZeroEntity Content { get; set; }
}