Read ME update Updating tile of role will update revelant channels and roles. Added command examples. Fixese leaks
17 lines
369 B
C#
17 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace EventBot.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
|
|
class ExampleAttribute : Attribute
|
|
{
|
|
public string Use { get; set; }
|
|
public ExampleAttribute(string use)
|
|
{
|
|
Use = use;
|
|
}
|
|
}
|
|
}
|