using System.Collections.Generic; namespace GameServiceWarden.Core.Persistence { public interface IPersistentDictionary : IDictionary { string MapDirectory { get; } string GetPathForKey(string key); } }