laatzen/LaaProductionWeb/LaaProduction.Http/Interfaces/IHttpClient.cs
2024-02-08 16:30:23 +01:00

16 lines
300 B
C#

namespace LaaProduction.Http.Interfaces
{
public interface IHttpClient
{
IHttpMessage Delete(string route);
IHttpMessage Get(string route);
IHttpMessage Options(string route);
IHttpMessage Post(string url);
IHttpMessage Put(string url);
}
}