PluralKit/Myriad/Gateway/Events/ThreadListSyncEvent.cs

11 lines
256 B
C#
Raw Normal View History

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