UnrecoverableAttribute.cs 410 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace InABox.Core
  5. {
  6. /// <summary>
  7. /// Indicates that when deleting this <see cref="Entity"/>, it is not saved as a <see cref="Deletion"/>, but completely purged,
  8. /// and thus is unrecoverable.
  9. /// </summary>
  10. [AttributeUsage(AttributeTargets.Class)]
  11. public class UnrecoverableAttribute : Attribute
  12. {
  13. }
  14. }