using zero.Core.Attributes; namespace zero.Core.Entities { [Collection("RecycleBin")] public class RecycledEntity : ZeroEntity { /// /// Id of the recycled entity /// public string OriginalId { get; set; } /// /// Group recycled entities together which have been recycled in a single operation /// public string OperationId { get; set; } /// /// Contains the entity content /// public ZeroEntity Content { get; set; } /// /// Recycled entities can be grouped together (e.g. pages, media, ...) /// public string Group { get; set; } } }