10 lines
245 B
C#
Raw Normal View History

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