DoNotShowInHelpAttribute.cs 152 B

123456789
  1. using System;
  2. namespace HuntBuddy.Attributes
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public class DoNotShowInHelpAttribute : Attribute
  6. {
  7. }
  8. }