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