27 lines
506 B
C#
27 lines
506 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 WhereaboutsAndCountModel
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public string Count { get; set; }
|
|
|
|
}
|
|
}
|