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
{
///
/// 专项动作
///
public class SpecialActionParam
{
///
/// 动作Id
///
public int Id { get; set; }
///
/// 专项水平Id
///
public int LevelId { get; set; }
///
/// 动作名称
///
public string ActionName { get; set; }
///
/// 动作类型
///
public SpecialActionType ActionType { get; set; }
///
/// 动作示范-视频路径
///
public string ActionVideoPath { get; set; }
///
/// 要领讲解-视频路径
///
public string ExplainVideoPath { get; set; }
///
/// 练习方法-视频路径
///
public string ExerciseVideoPath { get; set; }
///
/// 达标标准-视频路径
///
public string StandardVideoPath { get; set; }
}
}