PluralKit/Myriad/Gateway/Events/GuildCreateEvent.cs

10 lines
241 B
C#
Raw Normal View History

2021-08-27 11:03:47 -04:00
using Myriad.Types;
2020-12-22 13:15:26 +01:00
namespace Myriad.Gateway;
public record GuildCreateEvent: Guild, IGatewayEvent
2020-12-22 13:15:26 +01:00
{
public Channel[] Channels { get; init; }
public GuildMember[] Members { get; init; }
public Channel[] Threads { get; init; }
2020-12-22 13:15:26 +01:00
}