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