using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YD_WeChatApplet.Commons.Enum; namespace YD_WeChatApplet.Commons.Dto.Resource { /// /// 专项教学 /// public class SpecialDto { /// /// 专项名称 /// public string Name { get; set; } /// /// 动作列表 /// public List>> LevelList { get; set; } } /// /// 等级 /// public class SpecialLevelDto { /// /// 等级名称 /// public string Name { get; set; } public List ActionList { get; set; } } /// /// 专项动作 /// public class SpecialActionDto { /// /// Id /// public int Id { get; set; } /// /// 动作类型 /// public SpecialActionType ActionType { get; set; } /// /// 动作名称 /// public string ActionName { get; set; } /// /// 动作示范-视频路径 /// public string ActionVideoPath { get; set; } /// /// 要领讲解-视频路径 /// public string ExplainVideoPath { get; set; } /// /// 练习方法-视频路径 /// public string ExerciseVideoPath { get; set; } /// /// 达标标准-视频路径 /// public string StandardVideoPath { get; set; } } }