mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
11 lines
No EOL
232 B
C#
11 lines
No EOL
232 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Ombi.Api
|
|
{
|
|
public interface IApi
|
|
{
|
|
Task Request(Request request);
|
|
Task<T> Request<T>(Request request);
|
|
Task<string> RequestContent(Request request);
|
|
}
|
|
} |