mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 05:14:51 +00:00
12 lines
240 B
C#
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);
|
|
}
|
|
} |