Added settings for radarr and sonarr addresses

This commit is contained in:
2026-02-14 16:18:11 -07:00
parent bc7c95af08
commit 61e868bfa2
2 changed files with 48 additions and 0 deletions

View File

@@ -17,11 +17,31 @@ public class PluginConfiguration : BasePluginConfiguration
{
}
/// <summary>
/// Gets or sets the http address for your Radarr instance.
/// </summary>
public string RadarrHTTPAddress { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the port for your Radarr instance.
/// </summary>
public string RadarrPort { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the api for your Radarr instance.
/// </summary>
public string RadarrAPIKey { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the http address for your Sonarr instance.
/// </summary>
public string SonarrHTTPAddress { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the port for your Sonarr instance.
/// </summary>
public string SonarrPort { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the api for your Sonarr instance.
/// </summary>