From b93174070a0964f254781686ed2390855127ad7a Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 13 May 2020 14:21:49 -0400 Subject: Start adding some line handlers --- IrcStates/HandlesAttribute.cs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 IrcStates/HandlesAttribute.cs (limited to 'IrcStates/HandlesAttribute.cs') 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; - } - } -} -- cgit 1.4.1