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

10 lines
144 B
C#

using System.IO;
namespace CryptoExchange.Net.Interfaces
{
public interface IResponse
{
Stream GetResponseStream();
}
}