using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Entity.Enum { /// /// 速度跳绳模式 /// public enum Ai_FastJumpRopeModeEnum { /// /// 集体跳 /// [Description("集体跳")] FollowMode = 1, /// /// 分组跳 /// [Description("分组跳")] StandardMode = 2 } }