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

28 lines
549 B
C#
Raw Permalink 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-08-06 14:51:33 +08:00
/// 集体跳
2025-06-06 16:00:39 +08:00
/// </summary>
2025-08-06 14:51:33 +08:00
[Description("集体跳")]
2025-06-06 16:55:14 +08:00
FollowMode = 1,
2025-06-06 16:00:39 +08:00
/// <summary>
2025-08-06 14:51:33 +08:00
/// 分组跳
2025-06-06 16:00:39 +08:00
/// </summary>
2025-08-06 14:51:33 +08:00
[Description("分组跳")]
2025-06-06 16:55:14 +08:00
StandardMode = 2
2025-06-06 16:00:39 +08:00
}
}