Files
anthropic-client/src/AnthropicClient/Models/PingEventData.cs
T

15 lines
390 B
C#
Raw Normal View History

2024-06-28 10:54:00 -05:00
namespace AnthropicClient.Models;
2024-06-29 22:20:55 -05:00
/// <summary>
/// Represents data for a ping event.
/// </summary>
2024-06-28 10:54:00 -05:00
public class PingEventData : EventData
{
2024-06-29 22:20:55 -05:00
/// <summary>
/// Initializes a new instance of the <see cref="PingEventData"/> class.
/// </summary>
/// <returns>A new instance of the <see cref="PingEventData"/> class.</returns>
2024-06-28 10:54:00 -05:00
public PingEventData() : base(EventType.Ping)
{
}
}