mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-21 20:26:27 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// A structured issue reported by the native credential store.
|
|
/// </summary>
|
|
public enum SecretStoreIssueCode
|
|
{
|
|
NONE,
|
|
SECRET_NOT_FOUND,
|
|
NO_DEFAULT_COLLECTION,
|
|
COLLECTION_LOCKED,
|
|
PROMPT_DISMISSED,
|
|
SERVICE_UNAVAILABLE,
|
|
UNKNOWN,
|
|
} |