CommandDefinitionAttribute.cs 185 B

123456789
  1. using System;
  2. namespace Quadarax.Foundation.QConsole.Attributes
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public class CommandDefinitionAttribute : Attribute
  6. {
  7. }
  8. }