CommandAttribute.cs 239 B

12345678910
  1. using System;
  2. namespace HuntBuddy.Attributes;
  3. [AttributeUsage(AttributeTargets.Method)]
  4. public class CommandAttribute: Attribute {
  5. public string Command { get; }
  6. public CommandAttribute(string command) => this.Command = command;
  7. }