EmptyAspect.cs 720 B

1234567891011121314151617181920212223
  1. using Quadarax.Foundation.Core.QConsole.Argument;
  2. namespace qdr.app.tools.qfu.Commands.Aspects
  3. {
  4. internal class EmptyAspect
  5. {
  6. #region *** Constants ***
  7. public const string ARG_EMPTY_NAME = "empty";
  8. private const string ARG_EMPTY_HINT = "empty";
  9. private const string ARG_EMPTY_DESCR = "Flag if set clean only empty files or directories depends on scope argument.";
  10. #endregion
  11. #region *** Public Operations ***
  12. public static IEnumerable<AbstractArgument> SetupArguments()
  13. {
  14. return
  15. [
  16. new FlagArgument(ARG_EMPTY_NAME, ARG_EMPTY_DESCR, ARG_EMPTY_HINT, false)
  17. ];
  18. }
  19. #endregion
  20. }
  21. }