mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-12 19:12:11 +00:00
13 lines
192 B
C#
13 lines
192 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// Native backend used to register a global shortcut.
|
|
/// </summary>
|
|
public enum ShortcutBackend
|
|
{
|
|
NONE,
|
|
PORTAL,
|
|
TAURI,
|
|
LOCAL,
|
|
}
|