mirror of
https://github.com/XFox111/Shelldon.git
synced 2026-04-22 07:08:00 +03:00
8 lines
244 B
C#
8 lines
244 B
C#
namespace Shelldon.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Delegate | AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
|
|
public class CommandNameAttribute(string name) : Attribute
|
|
{
|
|
public string Name { get; } = name;
|
|
}
|