12 lines
257 B
C#
12 lines
257 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
using Myriad.Types;
|
|||
|
|
|||
|
namespace Myriad.Gateway
|
|||
|
{
|
|||
|
public record GuildCreateEvent: Guild, IGatewayEvent
|
|||
|
{
|
|||
|
public Channel[] Channels { get; init; }
|
|||
|
public GuildMember[] Members { get; init; }
|
|||
|
}
|
|||
|
}
|