mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
11 lines
254 B
C#
11 lines
254 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Sonarr.Api.V3.CustomFormats
|
|
{
|
|
public class CustomFormatBulkResource
|
|
{
|
|
public HashSet<int> Ids { get; set; } = new ();
|
|
public bool? IncludeCustomFormatWhenRenaming { get; set; }
|
|
}
|
|
}
|