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

13 lines
279 B
C#
Raw Normal View History

2024-09-03 00:07:12 +02:00
namespace Foxcord.Gateway.Events.Dispatch;
public interface IDispatch
{
}
public static class DispatchEventTypeName
{
public const string Ready = "READY";
public const string GuildCreate = "GUILD_CREATE";
public const string MessageCreate = "MESSAGE_CREATE";
}