Added initial commands project

This commit is contained in:
RogueException
2016-06-13 20:06:44 -03:00
parent d2df6d038d
commit 5ad63563c1
9 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace Discord.Commands
{
[AttributeUsage(AttributeTargets.Class)]
public class GroupAttribute : Attribute
{
public string Name { get; }
public GroupAttribute(string name)
{
Name = name;
}
}
}