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

13 lines
No EOL
279 B
C#

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";
}