Files
DiscordChatExporter/DiscordChatExporter/Models/ChannelChatLog.cs
2017-09-28 22:16:38 +03:00

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();
}
}
}