Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
16 lines
417 B
C#
16 lines
417 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MassiveKnob.Plugin
|
|
{
|
|
/// <summary>
|
|
/// Implemented by plugins which interface with Massive Knob device.
|
|
/// </summary>
|
|
public interface IMassiveKnobDevicePlugin : IMassiveKnobPlugin
|
|
{
|
|
/// <summary>
|
|
/// A list of devices supported by the plugin.
|
|
/// </summary>
|
|
IEnumerable<IMassiveKnobDevice> Devices { get; }
|
|
}
|
|
}
|