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/Radarr/RadarrCapabilities.cs

14 lines
350 B

namespace Recyclarr.Compatibility.Radarr;
// ReSharper disable once NotAccessedPositionalProperty.Global
//
// May get used one day; keep the parameter around so that calling
// code does not need to be changed later.
public record RadarrCapabilities(Version? Version)
{
public RadarrCapabilities()
: this((Version?) null)
{
}
}