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