using System; using System.Collections.Generic; namespace TradeIdeas.TIProGUI.Charting.JavaScriptBridge.Models { public class DrawOrderExecutionViewModel { public string Tooltip { get; set; } = string.Empty; public string Image { get; set; } = string.Empty; public string Symbol { get; set; } = string.Empty; public double AveragePrice { get; set; } public double ExactEntryX { get; set; } public IReadOnlyList Accounts { get; set; } = Array.Empty(); } }