AI-Studio/app/MindWork AI Studio/Tools/ContentStreamPdfMetadata.cs
2025-06-30 16:13:35 +02:00

11 lines
333 B
C#

using System.Text.Json.Serialization;
namespace AIStudio.Tools;
// ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable ClassNeverInstantiated.Global
public sealed class ContentStreamPdfMetadata : ContentStreamSseMetadata
{
[JsonPropertyName("Pdf")]
public ContentStreamPdfDetails? Pdf { get; init; }
}