Files
mixtape/zero.Core/RecycleBin/RecycledEntity.cs
T

29 lines
751 B
C#
Raw Normal View History

2021-11-24 13:56:08 +01:00
//using zero.Core.Attributes;
//namespace zero.Core.Entities
//{
2021-12-28 11:33:41 +01:00
// [RavenCollection("RecycleBin")]
2021-11-24 13:56:08 +01:00
// 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; }
// }
//}