about summary refs log blame commit diff
path: root/IrcStates/HandlesAttribute.cs
blob: 8f3b27149e85714c0e85abdb4aaacc8fcc1197d2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
        }
    }
}