using System; namespace TradeIdeas.TIProGUI.Charting.JavaScriptBridge.Models { public class AIDataViewModel { public bool Long { get; set; } public string Symbol { get; set; } public int DaysProfitable { get; set; } public int TotalDays { get; set; } public double TotalChangePercent { get; set; } public double TotalChange { get; set; } public double EntryPrice { get; set; } public double Last { get; set; } public DateTime? EntryDate { get; set; } } }