using System.Collections.Generic; namespace GameServiceWarden.Core.Persistence { public interface IReadOnlyPersistentDictionary : IReadOnlyDictionary { /// /// The directory for this dictionary to use. /// string MapDirectory { get; } /// /// The path to the data representing a specific key. /// /// The key to get the path for. /// A representing the key. string GetPathForKey(string key); } }