1
0
mirror of synced 2024-06-18 06:37:39 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin/IMassiveKnobDevicePlugin.cs

16 lines
417 B
C#
Raw Normal View History

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