mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 10:58:28 +00:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
14 lines
No EOL
371 B
C#
14 lines
No EOL
371 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IHasDspPresetSave
|
|
/// </summary>
|
|
public interface IHasDspPresetSave : IDspPresets
|
|
{
|
|
/// <summary>
|
|
/// Saves the preset by key
|
|
/// </summary>
|
|
/// <param name="key">key of preset to save</param>
|
|
void SavePreset(string key);
|
|
}
|
|
} |