namespace AIStudio.Tools.PluginSystem;
///
/// Represents a pending enterprise secret that needs to be stored in the OS keyring.
///
/// The secret ID.
/// The secret name.
/// The decrypted secret data.
/// The type of secret store to use.
public sealed record PendingEnterpriseSecret(
string SecretId,
string SecretName,
string SecretData,
SecretStoreType StoreType);