using System;
namespace MassiveKnob.Plugin
{
///
/// Contains information about the device supported by this plugin.
///
public interface IMassiveKnobDevice
{
///
/// Unique identifier for the device.
///
Guid DeviceId { get; }
///
/// The name of the action as shown in the action list when assigning to a knob or button.
///
string Name { get; }
///
/// A short description of the functionality provided by the action.
///
string Description { get; }
///
/// Called when the device is selected.
///
/// Provides an interface to the Massive Knob settings and device. Can be stored until the device instance is disposed.
IMassiveKnobDeviceInstance Create(IMassiveKnobContext context);
}
}