Files
Essentials/src/PepperDash.Essentials.Core/Devices/IDspPresets.cs
2025-07-22 15:53:01 +00:00

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);
}
}