mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
16 lines
313 B
C#
16 lines
313 B
C#
using System;
|
|
using System.Net;
|
|
|
|
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
public interface IRequest
|
|
{
|
|
Uri Uri { get; }
|
|
WebHeaderCollection Headers { get; set; }
|
|
string Method { get; set; }
|
|
|
|
void SetProxy(string host, int port);
|
|
IResponse GetResponse();
|
|
}
|
|
}
|