StableVersion4.3/HL_FristAidPlatform_DTO/Service/MassiveDataStatisticsDTO.cs

22 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class MassiveDataStatisticsDTO
{
/// <summary>
/// 名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 数值
/// </summary>
public int value { get; set; }
}
}