| 1234567891011121314151617181920212223 |
- using Quadarax.Foundation.Core.QConsole.Argument;
- namespace qdr.app.tools.qfu.Commands.Aspects
- {
- internal class SubdirsAspect
- {
- #region *** Constants ***
- public const string ARG_SUBDIRS_NAME = "s";
- private const string ARG_SUBDIRS_HINT = "subdirs";
- private const string ARG_SUBDIRS_DESCR = "Flag if set, then provide operation in subdirectories, otherwise only in specified directory.";
- #endregion
- #region *** Public Operations ***
- public static IEnumerable<AbstractArgument> SetupArguments()
- {
- return
- [
- new FlagArgument(ARG_SUBDIRS_NAME, ARG_SUBDIRS_DESCR, ARG_SUBDIRS_HINT, false)
- ];
- }
- #endregion
- }
- }
|