11 lines
208 B
C#
11 lines
208 B
C#
namespace SPTarkov.Server.Core.Models.Eft.Ws;
|
|
|
|
public record WsPing : WsNotificationEvent
|
|
{
|
|
public WsPing()
|
|
{
|
|
EventType = NotificationEventType.ping;
|
|
EventIdentifier = "ping";
|
|
}
|
|
}
|