| 1234567891011121314151617181920212223 |
- using Quadarax.Foundation.Core.QConsole.Argument;
- namespace qdr.app.tools.qfu.Commands.Aspects
- {
- internal class EmptyAspect
- {
- #region *** Constants ***
- public const string ARG_EMPTY_NAME = "empty";
- private const string ARG_EMPTY_HINT = "empty";
- private const string ARG_EMPTY_DESCR = "Flag if set clean only empty files or directories depends on scope argument.";
- #endregion
- #region *** Public Operations ***
- public static IEnumerable<AbstractArgument> SetupArguments()
- {
- return
- [
- new FlagArgument(ARG_EMPTY_NAME, ARG_EMPTY_DESCR, ARG_EMPTY_HINT, false)
- ];
- }
- #endregion
- }
- }
|