mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
7 lines
203 B
C#
7 lines
203 B
C#
|
namespace AIStudio.Tools;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Model for setting clipboard text.
|
||
|
/// </summary>
|
||
|
/// <param name="Text">The text to set to the clipboard.</param>
|
||
|
public record SetClipboardText(string Text);
|