namespace AIStudio.Tools.Rust; /// /// Data structure for storing a secret response. /// /// True, when the secret was successfully stored. /// The issue, when the secret could not be stored. /// The structured issue reported by the native credential store. public readonly record struct StoreSecretResponse(bool Success, string Issue, SecretStoreIssueCode IssueCode = SecretStoreIssueCode.NONE);