f35abdefe5
* added Sonarr search type option * updated test data * fixed duplicated Sonarr search items when using search type Season * added enhanced logging option along with Sonarr and Radarr enhanced logs * switched to ghcr.io
8 lines
192 B
C#
8 lines
192 B
C#
namespace Common.Configuration.Arr;
|
|
|
|
public abstract record ArrConfig
|
|
{
|
|
public required bool Enabled { get; init; }
|
|
|
|
public required List<ArrInstance> Instances { get; init; }
|
|
} |