using System; using System.Collections.Generic; using System.Text; namespace InABox.Core { /// /// Indicates that when deleting this , it is not saved as a , but completely purged, /// and thus is unrecoverable. /// [AttributeUsage(AttributeTargets.Class)] public class UnrecoverableAttribute : Attribute { } }