YD_SmartSports.Api/VOL.Entity/Enum/Ai_FastJumpRopeModeEnum.cs

28 lines
561 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Entity.Enum
{
/// <summary>
/// 速度跳绳模式
/// </summary>
public enum Ai_FastJumpRopeModeEnum
{
/// <summary>
2025-06-06 16:55:14 +08:00
/// 随堂模式
2025-06-06 16:00:39 +08:00
/// </summary>
2025-06-06 16:55:14 +08:00
[Description("随堂模式")]
FollowMode = 1,
2025-06-06 16:00:39 +08:00
/// <summary>
2025-06-06 16:55:14 +08:00
/// 标准模式
2025-06-06 16:00:39 +08:00
/// </summary>
2025-06-06 16:55:14 +08:00
[Description("标准模式")]
StandardMode = 2
2025-06-06 16:00:39 +08:00
}
}