1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2026-04-07 18:21:30 +00:00
2024-09-27 09:17:44 +02:00

18 lines
607 B
C#

namespace CryptoExchange.Net.SharedApis
{
/// <summary>
/// Request to retrieve the current open interest for a symbol
/// </summary>
public record GetOpenInterestRequest : SharedSymbolRequest
{
/// <summary>
/// ctor
/// </summary>
/// <param name="symbol">Symbol to retrieve open orders for</param>
/// <param name="exchangeParameters">Exchange specific parameters</param>
public GetOpenInterestRequest(SharedSymbol symbol, ExchangeParameters? exchangeParameters = null) : base(symbol, exchangeParameters)
{
}
}
}