Sono stati aggiunti tutti i file principali di Bootstrap 5.3.3, inclusi CSS, JavaScript (bundle, ESM, UMD, minificati), versioni RTL, utility, reboot, griglia e relative mappe delle sorgenti. Questi file abilitano un sistema di design moderno, responsive e accessibile, con supporto per layout LTR e RTL, debugging avanzato tramite source map e tutte le funzionalità di Bootstrap per lo sviluppo dell’interfaccia utente. Nessuna modifica ai file esistenti.
20 lines
460 B
C#
20 lines
460 B
C#
namespace TradingBot.Models;
|
|
|
|
public class Trade
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public string Symbol { get; set; } = string.Empty;
|
|
public TradeType Type { get; set; }
|
|
public decimal Price { get; set; }
|
|
public decimal Amount { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string Strategy { get; set; } = string.Empty;
|
|
public bool IsBot { get; set; }
|
|
}
|
|
|
|
public enum TradeType
|
|
{
|
|
Buy,
|
|
Sell
|
|
}
|