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