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.Compatibility/Sonarr/SonarrCapabilities.cs

11 lines
257 B

namespace Recyclarr.Compatibility.Sonarr;
public record SonarrCapabilities
{
public static Version MinimumVersion { get; } = new("3.0.9.1549");
public Version Version { get; init; } = new();
public bool SupportsCustomFormats { get; init; }
}