mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 12:37:07 +00:00
docs: put XML comments on correct thing
This commit is contained in:
parent
df03a71cbc
commit
11b190e76f
1 changed files with 7 additions and 4 deletions
|
|
@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue