mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 15:40:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			361 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			361 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace AIStudio.Tools;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// The response from the set clipboard operation.
 | 
						|
/// </summary>
 | 
						|
/// <param name="Success">True when the operation was successful.</param>
 | 
						|
/// <param name="Issue">The issue that occurred during the operation, empty when successful.</param>
 | 
						|
public readonly record struct SetClipboardResponse(bool Success, string Issue); |