Sonarr/src/NzbDrone.Common/Options/UpdateOptions.cs

10 lines
236 B
C#

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; }
}