using System; namespace AyaNova.Biz { /// /// Marker attribute indicating that an object supports attachments /// Used in /// [AttributeUsage(AttributeTargets.All)] public class AttachableAttribute : Attribute { //No code required, it's just a marker //https://docs.microsoft.com/en-us/dotnet/standard/attributes/writing-custom-attributes } }//eons