Cogwheel/src/CommandAttribute.cs
2025-01-01 14:43:35 -06:00

8 lines
195 B
C#

namespace Cogwheel;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class CommandAttribute : Attribute
{
public string Name = "";
public string Description = "";
}