You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.TrashLib/Compatibility/Sonarr/SonarrCapabilities.cs

19 lines
642 B

namespace Recyclarr.TrashLib.Compatibility.Sonarr;
public record SonarrCapabilities
{
public static Version MinimumVersion { get; } = new("3.0.4.1098");
public Version Version { get; init; } = new();
public bool SupportsNamedReleaseProfiles { get; init; }
// Background: Issue #16 filed which points to a backward-breaking API
// change made in Sonarr at commit [deed85d2f].
//
// [deed85d2f]: https://github.com/Sonarr/Sonarr/commit/deed85d2f9147e6180014507ef4f5af3695b0c61
public bool ArraysNeededForReleaseProfileRequiredAndIgnored { get; init; }
public bool SupportsCustomFormats { get; init; }
}