using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/11/4 15:41:32
//Author
//Description Create
//----------------------------------------------------------------
using Muchinfo.MTPClient.Data.Enums;
namespace Muchinfo.MTPClient.Data.Model.Account
{
public class DealCloseOrder
{
// autoId uint32 required 协议平仓ID
//AccountId uint32 required 账户编号
//BuyOrSell uint32 required 买卖方向
//status uint32 required 状态
///
/// 协议平仓ID
///
public uint autoId { get; set; }
///
/// 账号ID
///
public ulong AccountId { get; set; }
///
/// 买卖方向
///
public Direction Direction { get; set; }
///
/// 状态
///
public ComfrimStatus Status { get; set; }
}
}