OpenQuoteChartWindowArg.cs 999 B

12345678910111213141516171819202122232425262728293031
  1. //----------------------------------------------------------------
  2. //Module Name: OpenQuoteChartWinowArg
  3. //Purpose:
  4. //CopyRight: Muchinfo
  5. //History:
  6. //----------------------------------------------------------------
  7. //DateTime Author Description
  8. //----------------------------------------------------------------
  9. //2014-04-03 deng.yinping Create
  10. //----------------------------------------------------------------
  11. using Muchinfo.MTPClient.Data.Enums;
  12. using Muchinfo.MTPClient.Data.Model;
  13. namespace Muchinfo.MTPClient.Infrastructure.MessengerArgs
  14. {
  15. public class OpenQuoteChartWindowArg
  16. {
  17. public OpenQuoteChartWindowArg(QuoteGoods goods, CycleType cycle, bool createNew = false)
  18. {
  19. this.Goods = goods;
  20. this.CycleType = cycle;
  21. this.CreateNew = createNew;
  22. }
  23. public QuoteGoods Goods { get; set; }
  24. public CycleType CycleType { get; set; }
  25. public bool CreateNew { get; set; }
  26. }
  27. }