1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00

New: Bulk manage custom formats

This commit is contained in:
Bogdan
2024-08-19 02:55:13 +03:00
committed by Mark McDowall
parent a9b93dd9c6
commit 4e14ce022c
28 changed files with 697 additions and 30 deletions
@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace Sonarr.Api.V3.CustomFormats
{
public class CustomFormatBulkResource
{
public HashSet<int> Ids { get; set; } = new ();
public bool? IncludeCustomFormatWhenRenaming { get; set; }
}
}