foxcord/Foxcord/Gateway/Events/Dispatch/GuildCreateEvent.cs

9 lines
213 B
C#
Raw Permalink Normal View History

2024-09-03 00:07:12 +02:00
using Foxcord.Models;
namespace Foxcord.Gateway.Events.Dispatch;
public class GuildCreateEvent : Guild, IDispatch
{
public bool Unavailable { get; init; } = false;
public int MemberCount { get; init; }
}