23 lines
419 B
C#
23 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class StatisicsDTO
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TypeName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<DataSetDTO> GradeInfos { get; set; }
|
|
}
|
|
}
|