14 lines
302 B
C#
14 lines
302 B
C#
namespace Common.Logic.Extensions.Http.Interfaces
|
|
{
|
|
using System;
|
|
|
|
public interface IHttpRequest
|
|
{
|
|
IHttpRequest AddQueryParameter(String name, Object value);
|
|
|
|
IHttpResponse<T> GetResponse<T>();
|
|
|
|
IHttpRequest WithJsonBody(object body);
|
|
void Send();
|
|
}
|
|
} |