| 1234567891011121314151617181920212223 |
- using Quadarax.Foundation.Core.QConsole.Argument;
- namespace qdr.app.tools.qfu.Commands.Aspects
- {
- internal class DryAspect
- {
- #region *** Constants ***
- public const string ARG_DRY_NAME = "dry";
- private const string ARG_DRY_HINT = "dry";
- private const string ARG_DRY_DESCR = "Flag if set then provide just clean simulation without removing.";
- #endregion
- #region *** Public Operations ***
- public static IEnumerable<AbstractArgument> SetupArguments()
- {
- return
- [
- new FlagArgument(ARG_DRY_NAME, ARG_DRY_DESCR, ARG_DRY_HINT, false)
- ];
- }
- #endregion
- }
- }
|