1
0
mirror of synced 2024-07-02 11:57:40 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin/IMassiveKnobDevicePlugin.cs
Mark van Renswoude ff1e1ca74c Working proof-of-concept for refactoring
Implemented orchestrator
Implemented mock device
Implemented serial device
Implemented volume action
Removed old implementation
2021-02-24 09:05:11 +01:00

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; }
}
}