YD_SmartSports.Api/VOL.Model/Ai/Response/Ai_SpecialActionDto.cs
2025-06-06 16:00:39 +08:00

54 lines
1.3 KiB
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.Enum;
namespace VOL.Model.Ai
{
/// <summary>
/// 专项动作
/// </summary>
public class Ai_SpecialActionDto
{
/// <summary>
/// Id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 动作名称
/// </summary>
public string ActionName { get; set; }
/// <summary>
/// 动作类型
/// </summary>
public SpecialActionType ActionType { get; set; }
/// <summary>
/// 动作示范-视频路径
/// </summary>
public string ActionVideoPath { get; set; }
/// <summary>
/// 要领讲解-视频路径
/// </summary>
public string ExplainVideoPath { get; set; }
/// <summary>
/// 练习方法-视频路径
/// </summary>
public string ExerciseVideoPath { get; set; }
/// <summary>
/// 达标标准-视频路径
/// </summary>
public string StandardVideoPath { get; set; }
}
}