Files
Prowlarr-Prowlarr/src/NzbDrone.Host/AccessControl/UrlAcl.cs
Mark McDowall d77c685d14 Remove existing URL ACLs to avoid conflicts
New: Choose IP address to listen on (advanced)
Fixed: Check if URL has been registered with Windows before trying to register it
2014-12-09 23:38:52 -08:00

21 lines
447 B
C#

using System;
namespace NzbDrone.Host.AccessControl
{
public class UrlAcl
{
public string Scheme { get; set; }
public string Address { get; set; }
public int Port { get; set; }
public string UrlBase { get; set; }
public string Url
{
get
{
return String.Format("{0}://{1}:{2}/{3}", Scheme, Address, Port, UrlBase);
}
}
}
}