1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-08 00:16:27 +00:00
2018-02-28 13:53:29 +01:00

22 lines
432 B
C#

using System.IO;
using System.Net;
using CryptoExchange.Net.Interfaces;
namespace CryptoExchange.Net.Requests
{
public class Response : IResponse
{
private readonly WebResponse response;
public Response(WebResponse response)
{
this.response = response;
}
public Stream GetResponseStream()
{
return response.GetResponseStream();
}
}
}