From 328ed669cc3e56789a64edadd80fd755b599e3f8 Mon Sep 17 00:00:00 2001 From: nils2525 Date: Wed, 1 Apr 2026 20:14:45 +0200 Subject: [PATCH] Updated CoinGeckoMarket AllTimeHighTimestamp and LastUpdated properties to nullable DateTime --- CoinGecko.Net/Objects/Models/CoinGeckoMarket.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CoinGecko.Net/Objects/Models/CoinGeckoMarket.cs b/CoinGecko.Net/Objects/Models/CoinGeckoMarket.cs index 6d732d8..7c0cca8 100644 --- a/CoinGecko.Net/Objects/Models/CoinGeckoMarket.cs +++ b/CoinGecko.Net/Objects/Models/CoinGeckoMarket.cs @@ -114,7 +114,7 @@ public record CoinGeckoMarket /// [JsonConverter(typeof(DateTimeConverter))] [JsonPropertyName("ath_date")] - public DateTime AllTimeHighTimestamp { get; set; } + public DateTime? AllTimeHighTimestamp { get; set; } /// /// All time low price /// @@ -141,7 +141,7 @@ public record CoinGeckoMarket /// [JsonConverter(typeof(DateTimeConverter))] [JsonPropertyName("last_updated")] - public DateTime LastUpdated { get; set; } + public DateTime? LastUpdated { get; set; } } ///