mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-07-31 17:50:16 +02:00
a556926fe6
Fixes #8
10 lines
252 B
C#
10 lines
252 B
C#
using System.Collections.Generic;
|
|
using DiscordChatExporter.Models;
|
|
|
|
namespace DiscordChatExporter.Services
|
|
{
|
|
public interface IMessageGroupService
|
|
{
|
|
IReadOnlyList<MessageGroup> GroupMessages(IReadOnlyList<Message> messages);
|
|
}
|
|
} |