mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
Include NzbDrone.Update in mono/osx package Do not ignore certificate warnings for services Check hash before extracting update New: Update support for Linux/OS X - see the wiki for more information
26 lines
937 B
C#
26 lines
937 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Update;
|
|
|
|
namespace NzbDrone.Api.Config
|
|
{
|
|
public class HostConfigResource : RestResource
|
|
{
|
|
public Int32 Port { get; set; }
|
|
public Int32 SslPort { get; set; }
|
|
public Boolean EnableSsl { get; set; }
|
|
public Boolean LaunchBrowser { get; set; }
|
|
public Boolean AuthenticationEnabled { get; set; }
|
|
public String Username { get; set; }
|
|
public String Password { get; set; }
|
|
public String LogLevel { get; set; }
|
|
public String Branch { get; set; }
|
|
public String ApiKey { get; set; }
|
|
public Boolean Torrent { get; set; }
|
|
public String SslCertHash { get; set; }
|
|
public String UrlBase { get; set; }
|
|
public Boolean UpdateAutomatically { get; set; }
|
|
public UpdateMechanism UpdateMechanism { get; set; }
|
|
public String UpdateScriptPath { get; set; }
|
|
}
|
|
}
|