From c0af637108abf431ddf2017f03bcc5223186b41e Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 23 Sep 2025 11:07:24 -0500 Subject: [PATCH] fix: use correct property names --- .../Messengers/SystemMonitorMessenger.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/PepperDash.Essentials.MobileControl.Messengers/Messengers/SystemMonitorMessenger.cs b/src/PepperDash.Essentials.MobileControl.Messengers/Messengers/SystemMonitorMessenger.cs index fcc02930..63869ae0 100644 --- a/src/PepperDash.Essentials.MobileControl.Messengers/Messengers/SystemMonitorMessenger.cs +++ b/src/PepperDash.Essentials.MobileControl.Messengers/Messengers/SystemMonitorMessenger.cs @@ -105,35 +105,35 @@ namespace PepperDash.Essentials.AppServer.Messengers /// /// Gets or sets the TimeZoneName /// - [JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] + [JsonProperty("timeZoneName", NullValueHandling = NullValueHandling.Ignore)] public string TimeZoneName { get; set; } /// /// Gets or sets the IoControllerVersion /// - [JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] + [JsonProperty("ioControllerVersion", NullValueHandling = NullValueHandling.Ignore)] public string IoControllerVersion { get; set; } /// /// Gets or sets the SnmpVersion /// - [JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] + [JsonProperty("snmpVersion", NullValueHandling = NullValueHandling.Ignore)] public string SnmpVersion { get; set; } /// /// Gets or sets the BacnetVersion /// - [JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] + [JsonProperty("bacnetVersion", NullValueHandling = NullValueHandling.Ignore)] public string BacnetVersion { get; set; } /// /// Gets or sets the ControllerVersion /// - [JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] + [JsonProperty("controllerVersion", NullValueHandling = NullValueHandling.Ignore)] public string ControllerVersion { get; set; } } } \ No newline at end of file