mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
10 lines
236 B
C#
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; }
|
|
}
|