2024-07-19 12:56:41 -04:00
|
|
|
using HermesSocketLibrary.Requests.Messages;
|
|
|
|
|
2024-07-12 13:36:09 -04:00
|
|
|
namespace TwitchChatTTS.Chat.Groups
|
|
|
|
{
|
|
|
|
public interface IChatterGroupManager
|
|
|
|
{
|
|
|
|
void Add(Group group);
|
|
|
|
void Add(long chatter, string group);
|
|
|
|
void Add(long chatter, ICollection<string> groupIds);
|
|
|
|
void Clear();
|
|
|
|
Group? Get(string groupId);
|
|
|
|
IEnumerable<string> GetGroupNamesFor(long chatter);
|
|
|
|
int GetPriorityFor(long chatter);
|
|
|
|
int GetPriorityFor(IEnumerable<string> groupIds);
|
|
|
|
bool Remove(long chatter, string groupId);
|
|
|
|
}
|
|
|
|
}
|