You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 line
1.0KB

  1. using Newtonsoft.Json;
  2. using System.Reflection;
  3. namespace HealthMonitor.WebApi.Model.Request
  4. {
  5. public class BloodPressManualCalibration
  6. {
  7. // [JsonProperty(nameof(Imei))]
  8. public string Imei { get; set; } = default!;
  9. //[JsonProperty(nameof(ManualSystolicRefValue))]
  10. public int ManualSystolicRefValue { set; get; }
  11. // [JsonProperty(nameof(ManualDiastolicRefValue))]
  12. public int ManualDiastolicRefValue { set; get; }
  13. // [JsonProperty(nameof(Gender))]
  14. // public int Gender { set; get; }
  15. //// [JsonProperty(nameof(Height))]
  16. // public float Height { set; get; }
  17. //// [JsonProperty(nameof(Weight))]
  18. // public float Weight { set; get; }
  19. //// [JsonProperty(nameof(Hypertension))]
  20. // public bool Hypertension { set; get; }
  21. // manual_systolic_ref_value INT,
  22. //manual_diastolic_ref_value INT,
  23. //gender TINYINT,
  24. //age INT,
  25. //height FLOAT,
  26. //weight FLOAT,
  27. //hypertension bool
  28. }
  29. }