mirror of
https://git.battle-of-pip.de/root/vpr-mitarbeiterverwaltung.git
synced 2025-06-20 15:53:16 +02:00
12 lines
242 B
C#
12 lines
242 B
C#
namespace Server;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
|
|
public sealed class CommandAttribute : Attribute
|
|
{
|
|
public string Name { get; }
|
|
|
|
public CommandAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
} |