mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +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; }
|
||
|
}
|