AI-Studio/app/MindWork AI Studio/Tools/SetClipboardResponse.cs

8 lines
365 B
C#
Raw Normal View History

namespace AIStudio.Tools;
/// <summary>
/// The response from the set clipboard operation.
/// </summary>
2024-06-30 13:26:28 +00:00
/// <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);