mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
13 lines
357 B
C#
13 lines
357 B
C#
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; }
|
|
}
|