ECGPrint/1200Gxml心电图绘制/leadDataModel.cs
2024-12-25 17:24:22 +08:00

25 lines
859 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace
{
public class leadDataModel
{
public string LEAD_I { get; set; }// I导联
public string LEAD_II { get; set; }// II导联
public string LEAD_III { get; set; }// III导联
public string LEAD_AVR { get; set; }// AVR导联
public string LEAD_AVL { get; set; }// AVL导联
public string LEAD_AVF { get; set; }// AVF导联
public string LEAD_V1 { get; set; }// V1导联
public string LEAD_V2 { get; set; }// V2导联
public string LEAD_V3 { get; set; }// V3导联
public string LEAD_V4 { get; set; }// V4导联
public string LEAD_V5 { get; set; }// V5导联
public string LEAD_V6 { get; set; }// V6导联
}
}