1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

New: Bulk manage custom formats

This commit is contained in:
Bogdan
2024-08-19 02:55:13 +03:00
parent 672b351497
commit da5323a08f
25 changed files with 691 additions and 24 deletions
@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace Radarr.Api.V3.CustomFormats
{
public class CustomFormatBulkResource
{
public HashSet<int> Ids { get; set; } = new ();
public bool? IncludeCustomFormatWhenRenaming { get; set; }
}
}