23 lines
609 B
C#
23 lines
609 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AIMSExtension
|
|
{
|
|
public class NowPhysioData
|
|
{
|
|
public string Sys { get; set; }
|
|
public string Dia { get; set; }
|
|
public string Map { get; set; }
|
|
public string HR { get; set; }
|
|
public string Resp { get; set; }
|
|
public string SPO2 { get; set; }
|
|
public string Etco2 { get; set; }
|
|
public string PR { get; set; }
|
|
public string Sys_H { get; set; }
|
|
public string Dia_H { get; set; }
|
|
public string Map_H { get; set; }
|
|
}
|
|
}
|