PluralKit/Myriad/Gateway/Events/GuildCreateEvent.cs

11 lines
270 B
C#
Raw Normal View History

2021-04-29 09:10:19 +00:00
using Myriad.Types;
2020-12-22 12:15:26 +00:00
namespace Myriad.Gateway
{
public record GuildCreateEvent: Guild, IGatewayEvent
{
public Channel[] Channels { get; init; }
public GuildMember[] Members { get; init; }
public Channel[] Threads { get; init; }
2020-12-22 12:15:26 +00:00
}
}