mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-12 17:03:10 +00:00
22 lines
624 B
C#
22 lines
624 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Request to retrieve trading fees
|
|
/// </summary>
|
|
public record GetFeeRequest : SharedSymbolRequest
|
|
{
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="symbol">Symbol to retrieve fees for</param>
|
|
/// <param name="exchangeParameters">Exchange specific parameters</param>
|
|
public GetFeeRequest(SharedSymbol symbol, ExchangeParameters? exchangeParameters = null) : base(symbol, exchangeParameters)
|
|
{
|
|
}
|
|
}
|
|
}
|