Initial C# SDK structure and interfaces

This commit is contained in:
2026-04-06 23:33:56 +02:00
commit 015109f763
5 changed files with 58 additions and 0 deletions

10
Interfaces/IKeyringAPI.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace Chtn.CSharpSDK.Interfaces
{
public interface IKeyringAPI
{
void Set(string key, object value);
string Get(string key);
void Delete(string key);
void Flush();
}
}