Files
Essentials/src/PepperDash.Essentials.Core/Crestron IO/Inputs/IDigitalInput.cs
2023-02-07 15:45:01 -07:00

16 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core.CrestronIO
{
/// <summary>
/// Represents a device that provides digital input
/// </summary>
public interface IDigitalInput
{
BoolFeedback InputStateFeedback { get; }
}
}