mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 13:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			371 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			371 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace AIStudio.Tools;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Represents an interface defining a secret identifier.
 | 
						|
/// </summary>
 | 
						|
public interface ISecretId
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The unique ID of the secret.
 | 
						|
    /// </summary>
 | 
						|
    public string SecretId { get; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// The instance name of the secret.
 | 
						|
    /// </summary>
 | 
						|
    public string SecretName { get; }
 | 
						|
} |