gameservicewarden/src/GameServiceWarden.Core/Persistence/IReadOnlyPersistentDictionary.cs
Harrison Deng f402b8b7f2 Fixed method of access game modules.
Added some documentation.
Changed data persistence structure.
General naming changes.
Updated tests appropriately.
2021-03-30 15:22:28 -05:00

19 lines
611 B
C#

using System.Collections.Generic;
namespace GameServiceWarden.Core.Persistence
{
public interface IReadOnlyPersistentDictionary<V> : IReadOnlyDictionary<string, V>
{
/// <summary>
/// The directory for this dictionary to use.
/// </summary>
string MapDirectory { get; }
/// <summary>
/// The path to the data representing a specific key.
/// </summary>
/// <param name="key">The key to get the path for.</param>
/// <returns>A <see cref="string"/> representing the key.</returns>
string GetPathForKey(string key);
}
}