From 11b190e76fb6fb4935df80b8343cdf2e2902d665 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 25 Sep 2025 10:51:22 -0500 Subject: [PATCH] docs: put XML comments on correct thing --- .../CrestronIO/IOPortConfig.cs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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