10 lines
276 B
C#
10 lines
276 B
C#
namespace Chtn.CSharpSDK.Interfaces
|
|
{
|
|
public interface IDatabaseAPI
|
|
{
|
|
void Set(string collection, string key, object value);
|
|
string Get(string collection, string key);
|
|
void Delete(string collection, string key);
|
|
void Flush();
|
|
}
|
|
} |