YD_SmartSports.Api/VOL.Model/Norm/Response/SportsTestResultModel.cs

29 lines
665 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model.Norm.Response
{
/// <summary>
/// 体测数据响应Model
/// </summary>
public class SportsTestResultModel
{
/// <summary>
/// 标题
/// </summary>
public List<string> Titles { get; set; }
/// <summary>
/// 男生数据
/// </summary>
public List<float> BoyDatas { get; set; }
/// <summary>
/// 女生数据
/// </summary>
public List<float> GirlDatas { get; set; }
}
}