Files
Essentials/src/PepperDash.Essentials.Core/Devices/IDspPresets.cs

12 lines
240 B
C#

using PepperDash.Core;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core
{
public interface IDspPresets
{
Dictionary<string, IKeyName> Presets { get; }
void RecallPreset(string key);
}
}