about summary refs log tree commit diff
path: root/IrcStates/HandlesAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IrcStates/HandlesAttribute.cs')
-rw-r--r--IrcStates/HandlesAttribute.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/IrcStates/HandlesAttribute.cs b/IrcStates/HandlesAttribute.cs
deleted file mode 100644
index 8f3b271..0000000
--- a/IrcStates/HandlesAttribute.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-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;
-        }
-    }
-}