Skip to content

Commit

Permalink
Merge pull request #3 from Bradtus/development
Browse files Browse the repository at this point in the history
Make CoinGeckoMarket.MarketCapRank property nullable
  • Loading branch information
JKorf authored Oct 1, 2023
2 parents d97e391 + 262bf86 commit b137ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CoinGecko.Net/Objects/Models/CoinGeckoMarket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class CoinGeckoMarket
/// Market cap rank
/// </summary>
[JsonProperty("market_cap_rank")]
public decimal MarketCapRank { get; set; }
public decimal? MarketCapRank { get; set; }
/// <summary>
/// Fully diluted valuation
/// </summary>
Expand Down

0 comments on commit b137ffd

Please sign in to comment.