Files
SDK-CSharp/Interfaces/IKeyringAPI.cs

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();
}
}