mirror of
https://github.com/SoDOff-Project/sodoff-mmo.git
synced 2025-11-27 04:26:51 -08:00
10 lines
289 B
C#
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;
|
|
}
|
|
} |