mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 20:01:37 +00:00
18 lines
355 B
C#
18 lines
355 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,
|
|
}
|