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