mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 20:12:12 +00:00
11 lines
298 B
C#
11 lines
298 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public sealed class ContentStreamDocumentMetadata : ContentStreamSseMetadata
|
|
{
|
|
[JsonPropertyName("Document")]
|
|
public ContentStreamDocumentDetails? Document { get; init; }
|
|
}
|