1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00
Files
Radarr/src/Radarr.Api.V3/CustomFormats/CustomFormatBulkResource.cs
T
2024-08-21 03:57:21 +03:00

11 lines
254 B
C#

using System.Collections.Generic;
namespace Radarr.Api.V3.CustomFormats
{
public class CustomFormatBulkResource
{
public HashSet<int> Ids { get; set; } = new ();
public bool? IncludeCustomFormatWhenRenaming { get; set; }
}
}