mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00

New: Choose IP address to listen on (advanced) Fixed: Check if URL has been registered with Windows before trying to register it
21 lines
447 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|