mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
12 lines
234 B
C#
12 lines
234 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Common.Http.Proxy
|
|
{
|
|
public interface IHttpProxySettingsProvider
|
|
{
|
|
HttpProxySettings GetProxySettings(HttpRequest request);
|
|
}
|
|
}
|