mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
No EOL
230 B
C#
10 lines
No EOL
230 B
C#
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; }
|
|
} |