using PepperDash.Core; using System.Collections.Generic; namespace PepperDash.Essentials.Core { /// /// Defines the contract for IDspPresets /// public interface IDspPresets { /// /// Gets the Presets /// Dictionary Presets { get; } /// /// Recalls the preset by key /// /// key of preset to recall void RecallPreset(string key); } }