fix: use correct property names

This commit is contained in:
Andrew Welker
2025-09-23 11:07:24 -05:00
parent 9c9eaea928
commit c0af637108

View File

@@ -105,35 +105,35 @@ namespace PepperDash.Essentials.AppServer.Messengers
/// <summary> /// <summary>
/// Gets or sets the TimeZoneName /// Gets or sets the TimeZoneName
/// </summary> /// </summary>
[JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("timeZoneName", NullValueHandling = NullValueHandling.Ignore)]
public string TimeZoneName { get; set; } public string TimeZoneName { get; set; }
/// <summary> /// <summary>
/// Gets or sets the IoControllerVersion /// Gets or sets the IoControllerVersion
/// </summary> /// </summary>
[JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("ioControllerVersion", NullValueHandling = NullValueHandling.Ignore)]
public string IoControllerVersion { get; set; } public string IoControllerVersion { get; set; }
/// <summary> /// <summary>
/// Gets or sets the SnmpVersion /// Gets or sets the SnmpVersion
/// </summary> /// </summary>
[JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("snmpVersion", NullValueHandling = NullValueHandling.Ignore)]
public string SnmpVersion { get; set; } public string SnmpVersion { get; set; }
/// <summary> /// <summary>
/// Gets or sets the BacnetVersion /// Gets or sets the BacnetVersion
/// </summary> /// </summary>
[JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("bacnetVersion", NullValueHandling = NullValueHandling.Ignore)]
public string BacnetVersion { get; set; } public string BacnetVersion { get; set; }
/// <summary> /// <summary>
/// Gets or sets the ControllerVersion /// Gets or sets the ControllerVersion
/// </summary> /// </summary>
[JsonProperty("timeZone", NullValueHandling = NullValueHandling.Ignore)] [JsonProperty("controllerVersion", NullValueHandling = NullValueHandling.Ignore)]
public string ControllerVersion { get; set; } public string ControllerVersion { get; set; }
} }
} }