//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Persistence;
///
/// Interface for a dictionary entry of the dictionary adapter.
///
/// The type of the key.
/// The type of the value.
public interface IDictionaryEntity
{
///
/// Gets or sets the key.
///
TKey Key { get; set; }
///
/// Gets or sets the value identifier.
///
Guid ValueId { get; set; }
///
/// Gets or sets the value.
///
TValue Value { get; set; }
}