feat: add models for streaming messages
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AnthropicClient.Models;
|
||||
|
||||
public abstract class EventData
|
||||
{
|
||||
public string Type { get; init; }
|
||||
|
||||
protected EventData(string type)
|
||||
{
|
||||
Type = type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user