1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-11-12 16:27:38 +00:00
This commit is contained in:
Jkorf 2025-11-10 13:12:16 +01:00
parent 9d94a24862
commit b1c5cf318a
7 changed files with 3 additions and 8 deletions

View File

@ -67,7 +67,6 @@ namespace CryptoExchange.Net.Converters.SystemTextJson
: JsonConverter<T>, INullableConverterFactory where T : struct, Enum
{
private static List<KeyValuePair<T, string>>? _mapping = null;
private static string? objectLibrarySource = null;
private NullableEnumConverter? _nullableEnumConverter = null;
private static ConcurrentBag<string> _unknownValuesWarned = new ConcurrentBag<string>();

View File

@ -8,6 +8,6 @@
/// <summary>
/// The exchange the service is for
/// </summary>
public string Exchange { get; }
public string ExchangeName { get; }
}
}

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace CryptoExchange.Net.SharedApis.Enums
namespace CryptoExchange.Net.SharedApis
{
/// <summary>
/// Type of ticker
@ -16,7 +16,7 @@ namespace CryptoExchange.Net.SharedApis.Enums
/// <summary>
/// The ticker data is calculated based on the start of the day at 00:00 on UTC+0
/// </summary>
DayUTc0,
DayUtc0,
/// <summary>
/// Ticker data is calculated in a different way or not consistent
/// </summary>

View File

@ -1,5 +1,4 @@
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.SharedApis.Enums;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@ -1,5 +1,4 @@
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.SharedApis.Enums;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@ -1,5 +1,4 @@
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.SharedApis.Enums;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@ -1,5 +1,4 @@
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.SharedApis.Enums;
using System;
using System.Collections.Generic;
using System.Linq;