docs: update XML comments for Essentials Core

This commit is contained in:
Andrew Welker 2026-02-09 08:58:52 -06:00
parent 0764685c51
commit f88bb13367
260 changed files with 7018 additions and 1318 deletions

View file

@ -8,8 +8,15 @@ namespace PepperDash.Essentials.Core
/// </summary>
public interface IDspPresets
{
/// <summary>
/// Gets the Presets
/// </summary>
Dictionary<string, IKeyName> Presets { get; }
/// <summary>
/// Recalls the preset by key
/// </summary>
/// <param name="key">key of preset to recall</param>
void RecallPreset(string key);
}
}