Lidarr/src/Exceptron.Client/IRestClient.cs
2013-10-02 18:01:32 -07:00

7 lines
No EOL
169 B
C#

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