using System.Collections.Generic;
namespace MassiveKnob.Plugin
{
///
/// Implemented by plugins which interface with Massive Knob device.
///
public interface IMassiveKnobDevicePlugin : IMassiveKnobPlugin
{
///
/// A list of devices supported by the plugin.
///
IEnumerable Devices { get; }
}
}