Files
SPT-Server-Build/Core/Models/Eft/Ws/WsPing.cs
T
2025-01-15 15:06:54 +00:00

11 lines
191 B
C#

namespace Core.Models.Eft.Ws;
public class WsPing : WsNotificationEvent
{
public WsPing()
{
EventType = NotificationEventType.ping;
EventIdentifier = "ping";
}
}