feat: renamed CrestronIO folder

This commit is contained in:
Nick Genovese
2023-10-31 20:10:14 -04:00
parent b4911bfda1
commit 7a8158a3d3
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
extern alias Full;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using Full.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; }
}
}