Files
Discord.Net/src/Discord.Net.Commands/Attributes/CommandAttribute.cs
2016-06-21 05:34:11 -03:00

19 lines
441 B
C#

using System;
namespace Discord.Commands
{
[AttributeUsage(AttributeTargets.Method)]
public class CommandAttribute : Attribute
{
public string Text { get; }
public string Name { get; }
public CommandAttribute(string name) : this(name, name) { }
public CommandAttribute(string text, string name)
{
Text = text.ToLowerInvariant();
Name = name;
}
}
}