Added group support for websockets.

This commit is contained in:
Tom
2025-01-18 16:37:58 +00:00
parent aed0421843
commit a49e52a6bb
7 changed files with 164 additions and 2 deletions

View File

@@ -12,6 +12,8 @@ namespace TwitchChatTTS.Chat.Groups
IEnumerable<string> GetGroupNamesFor(long chatter);
int GetPriorityFor(long chatter);
int GetPriorityFor(IEnumerable<string> groupIds);
void Modify(Group group);
bool Remove(string groupId);
bool Remove(long chatter, string groupId);
}
}