11 lines
206 B
C#
11 lines
206 B
C#
namespace RudderSdk.Unity
|
|
{
|
|
public interface IUnityKeyValueStore
|
|
{
|
|
string GetString(string key);
|
|
void SetString(string key, string value);
|
|
void DeleteKey(string key);
|
|
void Save();
|
|
}
|
|
}
|