ircsharp/IrcStates/HandlesAttribute.cs

16 lines
329 B
C#

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;
}
}
}