namespace TradeIdeas.TIProGUI.Charting.JavaScriptBridge.Models { public class ChartManualTradeV2RequestModel { public bool IsBuy { get; set; } public double Price { get; set; } public double QuoteQuantity { get; set; } public string OrderType { get; set; } public string Account { get; set; } public string QuoteType { get; set; } public string Tif { get; set; } public string OcaGroup { get; set; } } }