Files
SPT-Server-Build/Core/Models/Eft/Ws/WsPing.cs
T
2025-01-17 18:13:37 +00:00

11 lines
192 B
C#

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