DryAspect.cs 690 B

1234567891011121314151617181920212223
  1. using Quadarax.Foundation.Core.QConsole.Argument;
  2. namespace qdr.app.tools.qfu.Commands.Aspects
  3. {
  4. internal class DryAspect
  5. {
  6. #region *** Constants ***
  7. public const string ARG_DRY_NAME = "dry";
  8. private const string ARG_DRY_HINT = "dry";
  9. private const string ARG_DRY_DESCR = "Flag if set then provide just clean simulation without removing.";
  10. #endregion
  11. #region *** Public Operations ***
  12. public static IEnumerable<AbstractArgument> SetupArguments()
  13. {
  14. return
  15. [
  16. new FlagArgument(ARG_DRY_NAME, ARG_DRY_DESCR, ARG_DRY_HINT, false)
  17. ];
  18. }
  19. #endregion
  20. }
  21. }