mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 01:02:56 +00:00
10 lines
281 B
C#
10 lines
281 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public sealed class ContentStreamTextMetadata : ContentStreamSseMetadata
|
|
{
|
|
[JsonPropertyName("Text")]
|
|
public ContentStreamTextDetails? Text { get; init; }
|
|
} |