mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
fix: use correct property names
This commit is contained in:
@@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user