sodoff-mmo/src/Attributes/ExtensionCommandHandlerAttribute.cs
2023-09-02 22:52:48 +02:00

10 lines
289 B
C#

namespace sodoffmmo.Attributes;
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
class ExtensionCommandHandlerAttribute : Attribute {
public string Name { get; }
public ExtensionCommandHandlerAttribute(string name) {
Name = name;
}
}