foxcord/Foxcord/Gateway/Events/Dispatch/GuildCreateEvent.cs
2024-09-03 00:07:12 +02:00

9 lines
No EOL
213 B
C#

using Foxcord.Models;
namespace Foxcord.Gateway.Events.Dispatch;
public class GuildCreateEvent : Guild, IDispatch
{
public bool Unavailable { get; init; } = false;
public int MemberCount { get; init; }
}