Initial commit
This commit is contained in:
8
src/CommandAttribute.cs
Normal file
8
src/CommandAttribute.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Cogwheel;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
||||
public class CommandAttribute : Attribute
|
||||
{
|
||||
public string Name = "";
|
||||
public string Description = "";
|
||||
}
|
||||
Reference in New Issue
Block a user