選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
726B

  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
  8. {
  9. public class BloodPressCalibrationConfigModel
  10. {
  11. [JsonProperty("imei")]
  12. public string Imei { get; set; } = default!;
  13. [JsonProperty("systolicCalibrationValue")]
  14. public int SystolicRefValue { get; set; }
  15. [JsonProperty("diastolicCalibrationValue")]
  16. public int DiastolicRefValue { get; set; }
  17. [JsonProperty("systolicIncValue")]
  18. public int SystolicIncValue { get; set; }
  19. [JsonProperty("diastolicIncValue")]
  20. public int DiastolicIncValue { get; set; }
  21. }
  22. }