AI-Studio/app/MindWork AI Studio/Tools/ISecretId.cs
2024-12-03 15:24:40 +01:00

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; }
}