using System; using System.Collections.Generic; using System.Text; namespace EventBot.Attributes { [AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)] class ExampleAttribute : Attribute { public string Use { get; set; } public ExampleAttribute(string use) { Use = use; } } }