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