| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.ONH.Collection.comm
- {
- public class ONHData
- {
- public ONHData()
- {
- Valid = false;
- }
- public string SampleNo { get; set; }
- public string OValue { get; set; }
- public string NValue { get; set; }
- public string HValue { get; set; }
- public string DeviceName { get; set; }
- public bool Valid { get; set; }
- }
- }
|