constellation-api/CH.CryptoStats/CryptoStats.cs

25 lines
833 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CH.Energy.Abstractions.Enum;
namespace CH.CryptoStats.Abstractions;
public class CryptoStats
{
public required string Name { get; set; }
public required string Symbol { get; set; }
public decimal MaxSupply { get; set; }
public decimal CirculatingSupply { get; set; }
public decimal TotalSupply { get; set; }
public required Currency Currency { get; set; }
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; }
}