Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
31 lines
806 B
C#
31 lines
806 B
C#
using System;
|
|
|
|
namespace MassiveKnob.Plugin
|
|
{
|
|
/// <summary>
|
|
/// Contains information about the device supported by this plugin.
|
|
/// </summary>
|
|
public interface IMassiveKnobDevice
|
|
{
|
|
/// <summary>
|
|
/// Unique identifier for the device.
|
|
/// </summary>
|
|
Guid DeviceId { get; }
|
|
|
|
/// <summary>
|
|
/// The name of the action as shown in the action list when assigning to a knob or button.
|
|
/// </summary>
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// A short description of the functionality provided by the action.
|
|
/// </summary>
|
|
string Description { get; }
|
|
|
|
/// <summary>
|
|
/// Called when the device is selected.
|
|
/// </summary>
|
|
IMassiveKnobDeviceInstance Create();
|
|
}
|
|
}
|