24 lines
784 B
C#
24 lines
784 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CH.CryptoStats.Abstractions;
|
|||
|
|
|||
|
public class CryptoStats
|
|||
|
{
|
|||
|
public required string Name { get; set; }
|
|||
|
public required string Symbol { get; set; }
|
|||
|
public int MaxSupply { get; set; }
|
|||
|
public int CirculatingSupply { get; set; }
|
|||
|
public int TotalSupply { get; set; }
|
|||
|
public required string 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; }
|
|||
|
}
|