using System.Drawing; namespace TradeIdeas.TIProGUI.Charting.JavaScriptBridge.Models { public class SmartStopLinesViewModel { public bool Show { get; set; } public bool IsLong { get; set; } public double SmartStopLevel { get; set; } public Color SmartStopColor { get; set; } public string SmartStopTooltip { get; set; } public double SmartTargetLevel { get; set; } public Color SmartTargetColor { get; set; } public string SmartTargetTooltip { get; set; } public double ProfitPrice { get; set; } public double LossPrice { get; set; } public double EntryPrice { get; set; } public double StopPrice { get; set; } public double TargetPrice { get; set; } } }