namespace GPIORaspberryPI4;
public interface IDigitalInput : IDisposable
{
int Pin { get; }
bool IsActive { get; }
bool Read();
}