Files
Essentials/src/PepperDash.Essentials.Core/CrestronIO/IAnalogInput.cs
2025-07-22 15:53:01 +00:00

17 lines
379 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
{
/// <summary>
/// Defines the contract for IAnalogInput
/// </summary>
public interface IAnalogInput
{
IntFeedback InputValueFeedback { get; }
}
}