20 lines
394 B
C#
20 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// DNT 中位数
|
|
/// </summary>
|
|
public class ThrombolysisMedianModel
|
|
{
|
|
public string CRTime { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public int Value { get; set; }
|
|
}
|
|
}
|