Files
mixtape/zero.Core/RecycleBin/RecycledEntity.cs
T
2021-12-28 11:33:41 +01:00

29 lines
751 B
C#

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