using System.Drawing; namespace TradeIdeas.TIProGUI.Charting.JavaScriptBridge.Models { public class CurrentPositionDataModel { public string Account { get; set; } public string SharesCountText { get; set; } public string SharesPnLText { get; set; } public Color SharesPnLColor { get; set; } public double Shares { get; set; } public double NetSharesTradedToday { get; set; } public double TotalProfit { get; set; } } }