mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 12:22:57 +00:00
12 lines
279 B
C#
12 lines
279 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
public class ContentStreamSseEvent
|
|
{
|
|
[JsonPropertyName("content")]
|
|
public string? Content { get; init; }
|
|
|
|
[JsonPropertyName("metadata")]
|
|
public ContentStreamSseMetadata? Metadata { get; init; }
|
|
} |