Sonarr/packages/Exceptron.Driver.0.1.0.34/src/IRestClient.cs

7 lines
169 B
C#

namespace Exceptron.Driver
{
internal interface IRestClient
{
TResponse Put<TResponse>(string url, object report) where TResponse : class, new();
}
}