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.
13 lines
357 B
13 lines
357 B
namespace NzbDrone.Common.Options;
|
|
|
|
public class ServerOptions
|
|
{
|
|
public string UrlBase { get; set; }
|
|
public string BindAddress { get; set; }
|
|
public int? Port { get; set; }
|
|
public bool? EnableSsl { get; set; }
|
|
public int? SslPort { get; set; }
|
|
public string SslCertPath { get; set; }
|
|
public string SslCertPassword { get; set; }
|
|
}
|