mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 09:15:06 +00:00
15 lines
322 B
C#
15 lines
322 B
C#
using PepperDash.Core;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IDspPresets
|
|
/// </summary>
|
|
public interface IDspPresets
|
|
{
|
|
Dictionary<string, IKeyName> Presets { get; }
|
|
|
|
void RecallPreset(string key);
|
|
}
|
|
} |