1
0
mirror of synced 2024-07-02 20:00:35 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin/IMassiveKnobDevice.cs
2021-02-28 11:55:23 +01:00

32 lines
856 B
C#

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