Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Ws/WsPing.cs
T
2025-03-07 13:16:43 +00:00

11 lines
208 B
C#

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