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

13 lines
333 B

namespace TrashLib.Services.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(new Version())
{
}
}