15 lines
314 B
C#
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);
|
|
}
|
|
}
|