Files
Essentials/src/PepperDash.Essentials.Core/CrestronIO/IAnalogInput.cs
2023-10-31 20:10:14 -04:00

14 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Core.CrestronIO
{
public interface IAnalogInput
{
IntFeedback InputValueFeedback { get; }
}
}