CommandAttribute.cs 255 B

123456789101112131415
  1. using System;
  2. namespace HuntBuddy.Attributes
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public class CommandAttribute : Attribute
  6. {
  7. public string Command { get; }
  8. public CommandAttribute(string command)
  9. {
  10. this.Command = command;
  11. }
  12. }
  13. }