Files
Essentials/Essentials Core/PepperDashEssentialsBase/Crestron IO/Inputs/IDigitalInput.cs
2017-10-31 13:17:00 -06:00

16 lines
373 B
C#

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