2021-08-27 15:03:47 +00:00
|
|
|
using Myriad.Types;
|
2021-07-15 10:41:19 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace Myriad.Gateway;
|
|
|
|
|
|
|
|
public record ThreadListSyncEvent: IGatewayEvent
|
2021-07-15 10:41:19 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public ulong GuildId { get; init; }
|
|
|
|
public ulong[]? ChannelIds { get; init; }
|
|
|
|
public Channel[] Threads { get; init; }
|
2021-07-15 10:41:19 +00:00
|
|
|
}
|