diff --git a/src/PepperDash.Essentials.Core/CrestronIO/IOPortConfig.cs b/src/PepperDash.Essentials.Core/CrestronIO/IOPortConfig.cs
index 52db6300..8641df69 100644
--- a/src/PepperDash.Essentials.Core/CrestronIO/IOPortConfig.cs
+++ b/src/PepperDash.Essentials.Core/CrestronIO/IOPortConfig.cs
@@ -14,25 +14,28 @@ namespace PepperDash.Essentials.Core.CrestronIO
///
public class IOPortConfig
{
- [JsonProperty("portDeviceKey")]
///
/// Gets or sets the PortDeviceKey
///
+ [JsonProperty("portDeviceKey")]
public string PortDeviceKey { get; set; }
- [JsonProperty("portNumber")]
+
///
/// Gets or sets the PortNumber
///
+ [JsonProperty("portNumber")]
public uint PortNumber { get; set; }
- [JsonProperty("disablePullUpResistor")]
+
///
/// Gets or sets the DisablePullUpResistor
///
+ [JsonProperty("disablePullUpResistor")]
public bool DisablePullUpResistor { get; set; }
- [JsonProperty("minimumChange")]
+
///
/// Gets or sets the MinimumChange
///
+ [JsonProperty("minimumChange")]
public int MinimumChange { get; set; }
}
}
\ No newline at end of file