AI-Studio/app/MindWork AI Studio/Tools/Rust/StoreSecretResponse.cs

8 lines
350 B
C#
Raw Normal View History

2024-09-01 18:10:03 +00:00
namespace AIStudio.Tools.Rust;
/// <summary>
/// Data structure for storing a secret response.
/// </summary>
/// <param name="Success">True, when the secret was successfully stored.</param>
/// <param name="Issue">The issue, when the secret could not be stored.</param>
public readonly record struct StoreSecretResponse(bool Success, string Issue);