namespace Discord.Attribute
{
using Controller;
///
/// To be placed over dynamic methods that will be executed by the
///
///
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class EventControllerAttribute : System.Attribute
{
public T Event { get; set; }
public EventControllerAttribute(T Event)
{
this.Event = Event;
}
}
}