using System.Drawing; namespace TradeIdeas.TIProGUI.Charting.JavaScriptBridge.Models { public class DrawTradeOrderViewModel { public string Id { get; set; } public string AccountName { get; set; } public Color Color { get; set; } public double Price { get; set; } public double EntryPrice { get; set; } public int Shares { get; set; } public int PositionInfoShares { get; set; } public bool AllowMoving { get; set; } public bool? IsEntryOrder { get; set; } public bool IsLong { get; set; } public string StatusText { get; set; } public string OcaGroup { get; set; } public string TradeType { get; set; } public double StopPrice { get; set; } public double LimitPrice { get; set; } public int CurrentShares { get; set; } } }