10 lines
241 B
C#
10 lines
241 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; }
|
|
} |