11 lines
283 B
C#
11 lines
283 B
C#
namespace TradingBot.Models;
|
|
|
|
public class MarketPrice
|
|
{
|
|
public string Symbol { get; set; } = string.Empty;
|
|
public decimal Price { get; set; }
|
|
public decimal Change24h { get; set; }
|
|
public decimal Volume24h { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
}
|