2025-01-06 15:17:59 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2025-01-08 15:25:25 -05:00
|
|
|
|
using CH.Energy.Abstractions.Enum;
|
2025-01-06 15:17:59 -05:00
|
|
|
|
|
|
|
|
|
namespace CH.CryptoStats.Abstractions;
|
|
|
|
|
|
|
|
|
|
public class CryptoStats
|
|
|
|
|
{
|
|
|
|
|
public required string Name { get; set; }
|
|
|
|
|
public required string Symbol { get; set; }
|
2025-01-08 15:25:25 -05:00
|
|
|
|
public decimal MaxSupply { get; set; }
|
|
|
|
|
public decimal CirculatingSupply { get; set; }
|
|
|
|
|
public decimal TotalSupply { get; set; }
|
|
|
|
|
public required Currency Currency { get; set; }
|
2025-01-06 15:17:59 -05:00
|
|
|
|
public DateTime UpdatedAt { get; set; }
|
|
|
|
|
public decimal Price { get; set; }
|
|
|
|
|
public decimal Volume24H { get; set; }
|
|
|
|
|
public decimal VolumeChange24H { get; set; }
|
|
|
|
|
public decimal MarketCap { get; set; }
|
|
|
|
|
public decimal MarketCapDominance { get; set; }
|
|
|
|
|
public decimal FullyDilutedMarketCap { get; set; }
|
|
|
|
|
}
|