common/Logic/Common.Logic.Extensions.Http/Interfaces/IHttpRequest.cs

16 lines
352 B
C#
Raw Permalink Normal View History

2026-04-23 15:50:07 +00:00
namespace Common.Logic.Extensions.Http.Interfaces
{
using System;
public interface IHttpRequest
{
IHttpRequest AddQueryParameter(String name, Object value);
IHttpResponse<T> GetResponse<T>();
void Send();
IHttpRequest WithJsonBody(Object body);
IHttpRequest WithPlainBody(String body);
}
}