diff --git a/CryptoExchange.Net/Interfaces/IExchangeService.cs b/CryptoExchange.Net/Interfaces/IExchangeService.cs new file mode 100644 index 0000000..3153939 --- /dev/null +++ b/CryptoExchange.Net/Interfaces/IExchangeService.cs @@ -0,0 +1,13 @@ +namespace CryptoExchange.Net.Interfaces +{ + /// + /// Service for an exchange + /// + public interface IExchangeService + { + /// + /// The exchange the service is for + /// + public string Exchange { get; } + } +}