Initial commit
Co-authored-by: neko <109633131+nekoppai@users.noreply.github.com> Co-authored-by: Lyssa <75037904+thecatontheceiling@users.noreply.github.com> Co-authored-by: abbodi1406 <33669284+abbodi1406@users.noreply.github.com>
This commit is contained in:
17
LibTSforge/TokenStore/ITokenStore.cs
Normal file
17
LibTSforge/TokenStore/ITokenStore.cs
Normal file
@ -0,0 +1,17 @@
|
||||
namespace LibTSforge.TokenStore
|
||||
{
|
||||
using System;
|
||||
|
||||
public interface ITokenStore : IDisposable
|
||||
{
|
||||
void Deserialize();
|
||||
void Serialize();
|
||||
void AddEntry(TokenEntry entry);
|
||||
void AddEntries(TokenEntry[] entries);
|
||||
void DeleteEntry(string name, string ext);
|
||||
void DeleteUnpopEntry(string name, string ext);
|
||||
TokenEntry GetEntry(string name, string ext);
|
||||
TokenMeta GetMetaEntry(string name);
|
||||
void SetEntry(string name, string ext, byte[] data);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user