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导联 } }