feat: add IDspPresetsDirectRecall interface to define preset recall functionality

This commit is contained in:
Neil Dorin 2026-07-21 11:21:22 -06:00
parent 6852f47ce2
commit f971a3adff
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,18 @@
using PepperDash.Core;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core;
/// <summary>
/// Defines the contract for IDspPresetsDirectRecall
/// </summary>
public interface IDspPresetsDirectRecall : IKeyed
{
/// <summary>
/// Recalls the preset by name
/// </summary>
/// <param name="name"></param>
void RunPreset(string name);
}