mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-21 20:46:27 +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,
|
||
|
|
}
|