namespace Chtn.CSharpSDK.Interfaces { public interface IKeyringAPI { void Set(string key, object value); string Get(string key); void Delete(string key); void Flush(); } }