Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user