New: Optionally use Environment Variables for settings in config.xml

This commit is contained in:
sillock1
2024-05-10 20:35:03 +01:00
committed by Bogdan
parent c7226fc85f
commit da30b55902
10 changed files with 155 additions and 34 deletions
@@ -0,0 +1,9 @@
namespace NzbDrone.Common.Options;
public class UpdateOptions
{
public string Mechanism { get; set; }
public bool? Automatically { get; set; }
public string ScriptPath { get; set; }
public string Branch { get; set; }
}