mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
17 lines
306 B
C#
17 lines
306 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public interface IHasDspPresets
|
|
{
|
|
List<IDspPreset> Presets { get; }
|
|
|
|
void RecallPreset(IDspPreset preset);
|
|
|
|
}
|
|
|
|
public interface IDspPreset
|
|
{
|
|
string Name { get; }
|
|
}
|
|
} |