docs: add missing xml comments

This commit is contained in:
Stevan Freeborn
2024-06-29 22:20:55 -05:00
parent 5edc0b5fff
commit 16624798bf
16 changed files with 233 additions and 0 deletions
@@ -1,7 +1,14 @@
namespace AnthropicClient.Models;
/// <summary>
/// Represents data for a ping event.
/// </summary>
public class PingEventData : EventData
{
/// <summary>
/// Initializes a new instance of the <see cref="PingEventData"/> class.
/// </summary>
/// <returns>A new instance of the <see cref="PingEventData"/> class.</returns>
public PingEventData() : base(EventType.Ping)
{
}