diff --git a/src/Recyclarr.Cli/Console/Commands/DeleteCustomFormatsCommand.cs b/src/Recyclarr.Cli/Console/Commands/DeleteCustomFormatsCommand.cs new file mode 100644 index 00000000..bfb9b4bc --- /dev/null +++ b/src/Recyclarr.Cli/Console/Commands/DeleteCustomFormatsCommand.cs @@ -0,0 +1,6 @@ +namespace Recyclarr.Cli.Console.Commands; + +public class DeleteCustomFormatsCommand +{ + +} diff --git a/src/Recyclarr.Cli/Console/Commands/ListCustomFormatsCommand.cs b/src/Recyclarr.Cli/Console/Commands/ListCustomFormatsCommand.cs index 82ec54f6..b03c13ac 100644 --- a/src/Recyclarr.Cli/Console/Commands/ListCustomFormatsCommand.cs +++ b/src/Recyclarr.Cli/Console/Commands/ListCustomFormatsCommand.cs @@ -22,8 +22,8 @@ internal class ListCustomFormatsCommand : AsyncCommand")] - [EnumDescription("The service to obtain information about.")] + [CommandArgument(0, "")] + [EnumDescription("The service type to obtain information about.")] [UsedImplicitly(ImplicitUseKindFlags.Assign)] public SupportedServices Service { get; init; } } diff --git a/src/Recyclarr.Cli/Console/Commands/ListQualitiesCommand.cs b/src/Recyclarr.Cli/Console/Commands/ListQualitiesCommand.cs index 0367a1c5..f8d325b0 100644 --- a/src/Recyclarr.Cli/Console/Commands/ListQualitiesCommand.cs +++ b/src/Recyclarr.Cli/Console/Commands/ListQualitiesCommand.cs @@ -21,8 +21,8 @@ internal class ListQualitiesCommand : AsyncCommand")] - [EnumDescription("The service to obtain information about.")] + [CommandArgument(0, "")] + [EnumDescription("The service type to obtain information about.")] [UsedImplicitly(ImplicitUseKindFlags.Assign)] public SupportedServices Service { get; init; } }