mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 07:40:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			343 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			343 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace AIStudio.Assistants.ERI;
 | 
						|
 | 
						|
public sealed class RetrievalParameter
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The name of the parameter.
 | 
						|
    /// </summary>
 | 
						|
    public string Name { get; set; } = string.Empty;
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// The description of the parameter.
 | 
						|
    /// </summary>
 | 
						|
    public string Description { get; set; } = string.Empty;
 | 
						|
} |