Files
linker/linker.messenger.sforward/client/ISForwardClientStore.cs
snltty 0ad8e6ebfa sync
2025-01-01 19:01:07 +08:00

22 lines
557 B
C#

namespace linker.messenger.sforward.client
{
public interface ISForwardClientStore
{
public string SecretKey { get; }
public bool SetSecretKey(string key);
public int Count();
public List<SForwardInfo> Get();
public SForwardInfo Get(uint id);
public SForwardInfo Get(string domain);
public SForwardInfo Get(int port);
public bool Add(SForwardInfo info);
public bool Update(SForwardInfo info);
public bool Remove(uint id);
public bool Confirm();
}
}