mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-13 20:42:11 +00:00
17 lines
354 B
C#
17 lines
354 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// Identifies a global keyboard shortcut.
|
|
/// </summary>
|
|
public enum Shortcut
|
|
{
|
|
/// <summary>
|
|
/// Null pattern - no shortcut assigned or unknown shortcut.
|
|
/// </summary>
|
|
NONE = 0,
|
|
|
|
/// <summary>
|
|
/// Toggles voice recording on/off.
|
|
/// </summary>
|
|
VOICE_RECORDING_TOGGLE,
|
|
} |