using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using Muchinfo.MTPClient.Data.Model; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2017/2/23 15:50:24 //Author //Description Create //---------------------------------------------------------------- namespace Muchinfo.MTPClient.Data { public class TradeParams { public TradeParams() { LockScreenTime = 10; IsCancelComfrim = true; IsOrderComfrim = false; IsSuccessComfrim = true; AllGoodsForAutoEntrust = new ObservableCollection(); } /// /// 委托是否要确认 /// public bool IsOrderComfrim { get; set; } /// /// 委托成功是否要关窗口 /// public bool IsSuccessComfrim { get; set; } /// /// 撤单是否确认 /// public bool IsCancelComfrim { get; set; } /// /// 锁屏时间 /// public int LockScreenTime { get; set; } /// /// 商品的相关信息-用于自动止损止盈 /// public ObservableCollection AllGoodsForAutoEntrust { get; set; } } }