Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

62 lines
1.6KB

  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HealthMonitor.Model.Service.Mapper
  8. {
  9. public class BloodPressurePushRefIncModel
  10. {
  11. [JsonProperty("ts")]
  12. public DateTime Timestamp { get; set; }
  13. [JsonProperty("serialno")]
  14. public string SerialNumber { get; set; } = default!;
  15. [JsonProperty("systolic_ref_value")]
  16. public int SystolicRefValue { get; set; }
  17. [JsonProperty("diastolic_ref_value")]
  18. public int DiastolicRefValue { get; set; }
  19. [JsonProperty("systolic_inc_value")]
  20. public int SystolicIncValue { get; set; }
  21. [JsonProperty("diastolic_inc_value")]
  22. public int DiastolicIncValue { get; set; }
  23. [JsonProperty("systolic_avg_value")]
  24. public float SystolicAvgValue { get; set; }
  25. [JsonProperty("diastolic_avg_value")]
  26. public float DiastoliAvgValue { get; set; }
  27. [JsonProperty("diastolic_avg_offset")]
  28. public float DiastolicAvgOffset { get; set; }
  29. [JsonProperty("systolic_avg_offset")]
  30. public float SystolicAvgOffset { get; set; }
  31. [JsonProperty("stat_start_time")]
  32. public DateTime StatStartTime { get; set; }
  33. [JsonProperty("stat_end_time")]
  34. public DateTime StatEndTime { get; set; }
  35. [JsonProperty("is_manual")]
  36. public bool IsManual { get; set; }
  37. [JsonProperty("serial_tail_no")]
  38. public string SerialTailNumber { get; set; } = default!;
  39. }
  40. }