AI-Studio/app/MindWork AI Studio/Tools/Rust/SetClipboardResponse.cs
2024-09-01 20:10:03 +02:00

8 lines
370 B
C#

namespace AIStudio.Tools.Rust;
/// <summary>
/// The response from the set clipboard operation.
/// </summary>
/// <param name="Success">True, when the operation was successful.</param>
/// <param name="Issue">The issues, which occurred during the operation, empty when successful.</param>
public readonly record struct SetClipboardResponse(bool Success, string Issue);