Add PING request type to RequestType enum

This commit is contained in:
netkas 2025-01-15 13:55:43 -05:00
parent a7f5d268de
commit 3adb62cfc7

View file

@ -4,6 +4,11 @@
enum RequestType : string enum RequestType : string
{ {
/**
* Represents the action of sending a ping request.
*/
case PING = 'ping';
/** /**
* Represents the action of getting server information (Non-RPC Request) * Represents the action of getting server information (Non-RPC Request)
*/ */