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