mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 18:01:36 +00:00
24 lines
657 B
C#
24 lines
657 B
C#
namespace AIStudio.Tools;
|
|
|
|
/// <summary>
|
|
/// Represents an interface defining a secret identifier.
|
|
/// </summary>
|
|
public interface ISecretId
|
|
{
|
|
/// <summary>
|
|
/// Prefix used for secrets imported from enterprise configuration plugins.
|
|
/// This helps distinguish enterprise-managed keys from user-added keys
|
|
/// in the OS keyring.
|
|
/// </summary>
|
|
public const string ENTERPRISE_KEY_PREFIX = "config-plugin";
|
|
|
|
/// <summary>
|
|
/// The unique ID of the secret.
|
|
/// </summary>
|
|
public string SecretId { get; }
|
|
|
|
/// <summary>
|
|
/// The instance name of the secret.
|
|
/// </summary>
|
|
public string SecretName { get; }
|
|
} |