2021-02-21 13:04:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2021-02-24 18:35:01 +00:00
|
|
|
|
namespace MassiveKnob.Plugin.EmulatorDevice
|
2021-02-21 13:04:24 +00:00
|
|
|
|
{
|
|
|
|
|
[MassiveKnobPlugin]
|
2021-02-24 18:35:01 +00:00
|
|
|
|
public class MassiveKnobEmulatorDevicePlugin : IMassiveKnobDevicePlugin
|
2021-02-21 13:04:24 +00:00
|
|
|
|
{
|
|
|
|
|
public Guid PluginId { get; } = new Guid("85f04232-d70f-494c-94a2-41452591ffb3");
|
|
|
|
|
public string Name { get; } = "Mock Device";
|
|
|
|
|
public string Description { get; } = "Emulates the actual device but does not communicate with anything.";
|
|
|
|
|
public string Author { get; } = "Mark van Renswoude <mark@x2software.net>";
|
|
|
|
|
public string Url { get; } = "https://www.github.com/MvRens/MassiveKnob/";
|
|
|
|
|
|
|
|
|
|
public IEnumerable<IMassiveKnobDevice> Devices { get; } = new IMassiveKnobDevice[]
|
|
|
|
|
{
|
2021-02-24 18:35:01 +00:00
|
|
|
|
new EmulatorDevice.Devices.EmulatorDevice()
|
2021-02-21 13:04:24 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|