29 lines
665 B
C#
29 lines
665 B
C#
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; }
|
|
}
|
|
}
|