using Muchinfo.MTPClient.Data.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model { /// /// 买卖方向 /// 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; } } } }