Files
SPT-Server-Build/Libraries/Core/Models/Eft/Ws/WsPing.cs
T
2025-01-19 17:45:48 +00:00

11 lines
192 B
C#

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