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

13 lines
206 B
C#
Raw Normal View History

2024-06-28 10:54:00 -05:00
using System.Text.Json.Serialization;
namespace AnthropicClient.Models;
public abstract class EventData
{
public string Type { get; init; }
protected EventData(string type)
{
Type = type;
}
}