mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
12 lines
235 B
C#
12 lines
235 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Common.Http
|
|
{
|
|
public interface IHttpProxySettingsProvider
|
|
{
|
|
HttpRequestProxySettings GetProxySettings(HttpRequest request);
|
|
}
|
|
}
|