| 12345678 |
- namespace Application.Abstractions.Chat;
- public interface IChatMessageStore
- {
- Task AddMessageAsync(string roomKey, ChatMessage message);
- Task<IReadOnlyList<ChatMessage>> GetRecentMessagesAsync(string roomKey, int count);
- Task ClearRoomAsync(string roomKey);
- }
|