8 lines
195 B
C#
8 lines
195 B
C#
namespace Cogwheel;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
|
public class CommandAttribute : Attribute
|
|
{
|
|
public string Name = "";
|
|
public string Description = "";
|
|
} |