namespace OpenMacroBoard.SDK
{
///
/// A managed by a
/// with additional meta data (like the connected state).
///
public interface IKnownDevice : IDeviceReference
{
///
/// Gets a value that indicates the current connection state.
/// True if the device is currently connected, false if the device is disconnected.
///
bool Connected { get; }
}
}