Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BloodPressManualCalibration.cs 1.0KB

12345678910111213141516171819202122232425262728293031
  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. }