You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Settings/Settings/Models/UpdateSettings.cs

13 lines
387 B

namespace Ombi.Settings.Settings.Models
{
public class UpdateSettings : Settings
{
public bool AutoUpdateEnabled { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string ProcessName { get; set; }
public bool UseScript { get; set; }
public string ScriptLocation { get; set; }
}
}