mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
docs: put XML comments on correct thing
This commit is contained in:
@@ -14,25 +14,28 @@ namespace PepperDash.Essentials.Core.CrestronIO
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class IOPortConfig
|
public class IOPortConfig
|
||||||
{
|
{
|
||||||
[JsonProperty("portDeviceKey")]
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the PortDeviceKey
|
/// Gets or sets the PortDeviceKey
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonProperty("portDeviceKey")]
|
||||||
public string PortDeviceKey { get; set; }
|
public string PortDeviceKey { get; set; }
|
||||||
[JsonProperty("portNumber")]
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the PortNumber
|
/// Gets or sets the PortNumber
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonProperty("portNumber")]
|
||||||
public uint PortNumber { get; set; }
|
public uint PortNumber { get; set; }
|
||||||
[JsonProperty("disablePullUpResistor")]
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the DisablePullUpResistor
|
/// Gets or sets the DisablePullUpResistor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonProperty("disablePullUpResistor")]
|
||||||
public bool DisablePullUpResistor { get; set; }
|
public bool DisablePullUpResistor { get; set; }
|
||||||
[JsonProperty("minimumChange")]
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the MinimumChange
|
/// Gets or sets the MinimumChange
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonProperty("minimumChange")]
|
||||||
public int MinimumChange { get; set; }
|
public int MinimumChange { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user