Added configuration page

This commit is contained in:
2025-11-23 16:06:58 -07:00
parent 0bace555ab
commit 7f03a47923
4 changed files with 48 additions and 28 deletions

View File

@@ -13,4 +13,19 @@ public class PluginConfiguration : BasePluginConfiguration
public PluginConfiguration()
{
}
/// <summary>
/// Gets or sets the api for your Radarr instance.
/// </summary>
public string RadarrAPIKey { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the api for your Sonarr instance.
/// </summary>
public string SonarrAPIKey { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the cut off days before deleting unwatched files.
/// </summary>
public int DaysUnwatched { get; set; } = 90;
}