using System; namespace IrcStates { [AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)] internal class HandlesAttribute : Attribute { private string Command { get; } public HandlesAttribute(string command) { Command = command; } } }