namespace AnthropicClient.Models; /// /// Represents data for a ping event. /// public class PingEventData : EventData { /// /// Initializes a new instance of the class. /// /// A new instance of the class. public PingEventData() : base(EventType.Ping) { } }