mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
22 lines
432 B
C#
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();
|
|
}
|
|
}
|
|
}
|