ONHData.cs 506 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.ONH.Collection.comm
  6. {
  7. public class ONHData
  8. {
  9. public ONHData()
  10. {
  11. Valid = false;
  12. }
  13. public string SampleNo { get; set; }
  14. public string OValue { get; set; }
  15. public string NValue { get; set; }
  16. public string HValue { get; set; }
  17. public string DeviceName { get; set; }
  18. public bool Valid { get; set; }
  19. }
  20. }