mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
10 lines
144 B
C#
10 lines
144 B
C#
using System.IO;
|
|
|
|
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
public interface IResponse
|
|
{
|
|
Stream GetResponseStream();
|
|
}
|
|
}
|