mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-24 22:55:21 -04:00
04bb0c51b1
(cherry picked from commit d051dac12c8b797761a0d1f3b4aa84cff47ed13d)
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; }
|
|
}
|