13 lines
206 B
C#
13 lines
206 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AnthropicClient.Models;
|
|
|
|
public abstract class EventData
|
|
{
|
|
public string Type { get; init; }
|
|
|
|
protected EventData(string type)
|
|
{
|
|
Type = type;
|
|
}
|
|
} |