mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-03 00:29:20 +00:00
21 lines
518 B
C#
21 lines
518 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace DiscordChatExporter.Models
|
|
{
|
|
public class ChannelChatLog
|
|
{
|
|
public Guild Guild { get; }
|
|
|
|
public Channel Channel { get; }
|
|
|
|
public IReadOnlyList<MessageGroup> MessageGroups { get; }
|
|
|
|
public ChannelChatLog(Guild guild, Channel channel, IEnumerable<MessageGroup> messageGroups)
|
|
{
|
|
Guild = guild;
|
|
Channel = channel;
|
|
MessageGroups = messageGroups.ToArray();
|
|
}
|
|
}
|
|
} |