mirror of
https://github.com/snltty/linker.git
synced 2025-12-17 17:06:47 +08:00
15 lines
482 B
C#
15 lines
482 B
C#
namespace linker.messenger.relay.server
|
|
{
|
|
public interface IRelayServerNodeStore
|
|
{
|
|
public Task<List<RelayServerNodeStoreInfo>> GetAll();
|
|
public Task<RelayServerNodeStoreInfo> GetByNodeId(string nodeId);
|
|
public Task<bool> Add(RelayServerNodeStoreInfo info);
|
|
public Task<bool> Report(RelayServerNodeReportInfo info);
|
|
public Task<bool> Delete(string nodeId);
|
|
public Task<bool> Update(RelayServerNodeStoreInfo info);
|
|
}
|
|
|
|
|
|
}
|