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