1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-12-30 18:46:53 +00:00

Added IExchangeService interface

This commit is contained in:
Jkorf 2025-11-10 09:15:29 +01:00
parent 6cf9684f55
commit 9d94a24862

View File

@ -0,0 +1,13 @@
namespace CryptoExchange.Net.Interfaces
{
/// <summary>
/// Service for an exchange
/// </summary>
public interface IExchangeService
{
/// <summary>
/// The exchange the service is for
/// </summary>
public string Exchange { get; }
}
}