Files
PluralKit/Myriad/Gateway/Events/GuildCreateEvent.cs
2021-07-15 12:41:19 +02:00

11 lines
270 B
C#

using Myriad.Types;
namespace Myriad.Gateway
{
public record GuildCreateEvent: Guild, IGatewayEvent
{
public Channel[] Channels { get; init; }
public GuildMember[] Members { get; init; }
public Channel[] Threads { get; init; }
}
}