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 message_stop event.
/// </summary>
public class MessageStopEventData : EventData
{
/// <summary>
/// Initializes a new instance of the <see cref="MessageStopEventData"/> class.
/// </summary>
/// <returns>A new instance of the <see cref="MessageStopEventData"/> class.</returns>
public MessageStopEventData() : base(EventType.MessageStop)
{
}