laatzen/LaaProductionWeb/LaaProduction.Http/Interfaces/IHttpClient.cs
2024-02-20 14:56:42 +01:00

16 lines
399 B
C#

namespace LaaProduction.Http.Interfaces
{
public interface IHttpClient
{
IHttpMessage Delete(string route, bool full = false);
IHttpMessage Get(string route, bool full = false);
IHttpMessage Options(string route, bool full = false);
IHttpMessage Post(string route, bool full = false);
IHttpMessage Put(string route, bool full = false);
}
}