using System; using Microsoft.Extensions.Logging; 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. /// IMassiveKnobDeviceInstance Create(ILogger logger); } }