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("标准模式")]
StandardMode = 1,
///
/// 随堂模式
///
[Description("随堂模式")]
FollowMode = 2
}
}