namespace AIStudio.Tools;
///
/// Represents an interface defining a secret identifier.
///
public interface ISecretId
{
///
/// The unique ID of the secret.
///
public string SecretId { get; }
///
/// The instance name of the secret.
///
public string SecretName { get; }
}