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