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

15 lines
314 B
C#

namespace LaaProduction.Http.Interfaces
{
using System;
using System.Threading.Tasks;
public interface IHttpMessage : IDisposable
{
IHttpMessage AuthorizeBearer(string parameter);
Task<IHttpResponse<T>> SendAsync<T>();
IHttpMessage WhitJsonBody(object model);
}
}