mirror of
https://github.com/snltty/linker.git
synced 2025-10-05 09:06:54 +08:00
17 lines
417 B
C#
17 lines
417 B
C#
namespace linker.messenger.forward
|
|
{
|
|
public interface IForwardClientStore
|
|
{
|
|
public int Count();
|
|
|
|
public List<ForwardInfo> Get();
|
|
public ForwardInfo Get(uint id);
|
|
public List<ForwardInfo> Get(string groupId);
|
|
public bool Add(ForwardInfo info);
|
|
public bool Update(ForwardInfo info);
|
|
public bool Remove(uint id);
|
|
|
|
public bool Confirm();
|
|
}
|
|
}
|