mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-12 00:43:03 +00:00
14 lines
299 B
C#
14 lines
299 B
C#
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Service for an exchange
|
|
/// </summary>
|
|
public interface IExchangeService
|
|
{
|
|
/// <summary>
|
|
/// The exchange the service is for
|
|
/// </summary>
|
|
public string ExchangeName { get; }
|
|
}
|
|
}
|