| 1234567891011121314151617181920212223242526272829303132 |
- using Muchinfo.MTPClient.Data.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model
- {
- /// <summary>
- /// 买卖方向
- /// </summary>
- public class BuyOrSellDirection
- {
- private Direction _buyOrSell;
- public Direction BuyOrSell
- {
- get { return _buyOrSell; }
- set { _buyOrSell = value; }
- }
- private string _buyOrSellTitle;
- public string BuyOrSellTitle
- {
- get { return _buyOrSellTitle; }
- set { _buyOrSellTitle = value; }
- }
- }
- }
|