1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-19 20:33:03 +00:00

Added ITransferRestClient, updated Shared IBalanceRestClient to use SharedAccountType

This commit is contained in:
Jkorf
2025-10-15 13:21:00 +02:00
parent f6f9a53ce5
commit f87506b490
11 changed files with 339 additions and 9 deletions
@@ -88,13 +88,13 @@ namespace CryptoExchange.Net.Converters.SystemTextJson
}
/// <summary>
/// Parse a long value to datetime
/// Parse a double value to datetime
/// </summary>
public static DateTime ParseFromDouble(double value)
=> ParseFromDecimal((decimal)value);
/// <summary>
/// Parse a long value to datetime
/// Parse a decimal value to datetime
/// </summary>
public static DateTime ParseFromDecimal(decimal value)
{