mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 19:34:51 +00:00
23 lines
598 B
C#
23 lines
598 B
C#
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Core.CrestronIO
|
|
{
|
|
public class IOPortConfig
|
|
{
|
|
[JsonProperty("portDeviceKey")]
|
|
public string PortDeviceKey { get; set; }
|
|
[JsonProperty("portNumber")]
|
|
public uint PortNumber { get; set; }
|
|
[JsonProperty("disablePullUpResistor")]
|
|
public bool DisablePullUpResistor { get; set; }
|
|
[JsonProperty("minimumChange")]
|
|
public int MinimumChange { get; set; }
|
|
}
|
|
} |