13 lines
279 B
C#
13 lines
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";
|
||
|
}
|