PluralKit/Myriad/Gateway/Events/GuildCreateEvent.cs

12 lines
257 B
C#
Raw Normal View History

2020-12-22 12:15:26 +00:00
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; }
}
}