- using Newtonsoft.Json;
- using System.Reflection;
-
- namespace HealthMonitor.WebApi.Model.Request
- {
- public class BloodPressManualCalibration
- {
-
- public string Imei { get; set; } = default!;
-
- public int ManualSystolicRefValue { set; get; }
-
- public int ManualDiastolicRefValue { set; get; }
-
-
-
-
- public bool IsPushRefOnly { set; get; } = false;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|