//---------------------------------------------------------------- //Module Name: OpenQuoteChartWinowArg //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime Author Description //---------------------------------------------------------------- //2014-04-03 deng.yinping Create //---------------------------------------------------------------- using Muchinfo.MTPClient.Data.Enums; using Muchinfo.MTPClient.Data.Model; namespace Muchinfo.MTPClient.Infrastructure.MessengerArgs { public class OpenQuoteChartWindowArg { public OpenQuoteChartWindowArg(QuoteGoods goods, CycleType cycle, bool createNew = false) { this.Goods = goods; this.CycleType = cycle; this.CreateNew = createNew; } public QuoteGoods Goods { get; set; } public CycleType CycleType { get; set; } public bool CreateNew { get; set; } } }