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