Adds role specific channels.
Read ME update Updating tile of role will update revelant channels and roles. Added command examples. Fixese leaks
This commit is contained in:
16
EventBot/Attributes/ExampleAttribute.cs
Normal file
16
EventBot/Attributes/ExampleAttribute.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user