BuyOrSellDirection.cs 637 B

1234567891011121314151617181920212223242526272829303132
  1. using Muchinfo.MTPClient.Data.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Muchinfo.MTPClient.Data.Model
  7. {
  8. /// <summary>
  9. /// 买卖方向
  10. /// </summary>
  11. public class BuyOrSellDirection
  12. {
  13. private Direction _buyOrSell;
  14. public Direction BuyOrSell
  15. {
  16. get { return _buyOrSell; }
  17. set { _buyOrSell = value; }
  18. }
  19. private string _buyOrSellTitle;
  20. public string BuyOrSellTitle
  21. {
  22. get { return _buyOrSellTitle; }
  23. set { _buyOrSellTitle = value; }
  24. }
  25. }
  26. }