mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:29:06 +00:00
9 lines
429 B
C#
9 lines
429 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// Data structure for any requested secret.
|
|
/// </summary>
|
|
/// <param name="Success">True, when the secret was successfully retrieved.</param>
|
|
/// <param name="Secret">The secret, e.g., API key.</param>
|
|
/// <param name="Issue">The issue, when the secret could not be retrieved.</param>
|
|
public readonly record struct RequestedSecret(bool Success, EncryptedText Secret, string Issue); |