You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
356 B

using System.Net.Http;
using System.Threading.Tasks;
namespace RadarrSharp.Proxies
{
internal interface IRadarrProxy
{
Task<T> GetAsync<T>(string url);
Task<T> PostAsync<T, U>(string rootUrl, U data);
Task<T> PutAsync<T, U>(string rootUrl, U data);
Task<HttpResponseMessage> DeleteAsync(string rootUrl);
}
}