Files
UnrealEngine/Engine/Source/Programs/Shared/EpicGames.Horde/Secrets/ISecret.cs
2025-05-18 13:04:45 +08:00

23 lines
418 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
namespace EpicGames.Horde.Secrets
{
/// <summary>
/// Information about a secret
/// </summary>
public interface ISecret
{
/// <summary>
/// Identifier for the secret
/// </summary>
SecretId Id { get; }
/// <summary>
/// The secret values
/// </summary>
IReadOnlyDictionary<string, string> Data { get; }
}
}