using Muchinfo.MTPClient.Data.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 交割申报-初始化信息 /// public class DeliveryOrderMessage { /// /// 下单方向 /// public Direction Direction { get; set; } private uint _goodsId; /// /// 交易商品ID /// public uint GoodsId { get { return _goodsId; } set { _goodsId = value; } } /// /// 资金帐号 /// public ulong AccountID { get; set; } } }