From f6f3e7e0c535aaf3627f815dd63970aec6c73f75 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 6 May 2020 21:27:36 -0400 Subject: start impl --- IrcStates/HandlesAttribute.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 IrcStates/HandlesAttribute.cs (limited to 'IrcStates/HandlesAttribute.cs') diff --git a/IrcStates/HandlesAttribute.cs b/IrcStates/HandlesAttribute.cs new file mode 100644 index 0000000..8f3b271 --- /dev/null +++ b/IrcStates/HandlesAttribute.cs @@ -0,0 +1,15 @@ +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