1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-18 20:02:57 +00:00

Shared exchange functionality (#214)

This commit is contained in:
Jan Korf
2024-09-27 09:17:44 +02:00
committed by GitHub
parent 5d3de52da6
commit b8686d60b9
199 changed files with 7219 additions and 277 deletions
@@ -0,0 +1,28 @@
using System;
namespace CryptoExchange.Net.SharedApis
{
/// <summary>
/// Funding rate
/// </summary>
public record SharedFundingRate
{
/// <summary>
/// The funding rate
/// </summary>
public decimal FundingRate { get; set; }
/// <summary>
/// Timestamp
/// </summary>
public DateTime Timestamp { get; set; }
/// <summary>
/// ctor
/// </summary>
public SharedFundingRate(decimal fundingRate, DateTime timestamp)
{
FundingRate = fundingRate;
Timestamp = timestamp;
}
}
}