using System.ComponentModel; namespace Binance.TradeRobot.Model.Base { public class Enums { #region 基本 public enum BusinessType { /// /// 现货 /// Spot = 0, /// /// 合约 /// Prep = 1 } #endregion #region 用户资金 /// /// 资金变更类型 追投=0,提现=1,转移=2 /// public enum CapitalChangeType { /// /// 增加资金 /// Add = 0, /// /// 减少资金 /// Reduce = 1, /// /// 转移资金 /// Transfer = 2 } /// /// 资金方向 转入=0,转出=1 /// public enum FundDirection { In = 0, Out = 1 } #endregion #region 机器人 /// /// 机器人状态 Stop=0,Runing=1 /// public enum RobotStatus { Stop = 0, Runing = 1 } #endregion } }