using System.Collections; namespace VisionBuilder.UI.IOCommander.Interfaces; public interface IIOCommander { BitArray PinState { get; } event Action OnPinChanged; void SetPins(int pin, bool state); }