namespace AIStudio.Tools; /// /// Represents an interface defining a secret identifier. /// public interface ISecretId { /// /// Prefix used for secrets imported from enterprise configuration plugins. /// This helps distinguish enterprise-managed keys from user-added keys /// in the OS keyring. /// public const string ENTERPRISE_KEY_PREFIX = "config-plugin"; /// /// The unique ID of the secret. /// public string SecretId { get; } /// /// The instance name of the secret. /// public string SecretName { get; } }