Files
EventDiscordBot/EventBot/Attributes/ExampleAttribute.cs
Karolis2011 e9f59780ed Adds role specific channels.
Read ME update

Updating tile of role will update revelant channels and roles.

Added command examples.

Fixese leaks
2019-08-01 20:25:28 +03:00

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