27 lines
504 B
C#
27 lines
504 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 随访统计
|
|
/// </summary>
|
|
public class ChesPainFollowUpStatostocsModel
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
|
|
public List<Data> data { get; set; }
|
|
}
|
|
|
|
public class Data
|
|
{
|
|
public int value { get; set; }
|
|
}
|
|
}
|