mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 18:52:11 +00:00
9 lines
197 B
C#
9 lines
197 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
public sealed record ShortcutResponse(
|
|
bool Success,
|
|
string ErrorMessage,
|
|
ShortcutBackend Backend,
|
|
bool Cancelled,
|
|
string EffectiveDisplayName);
|