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