mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 13:02:57 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <mail@tsommer.org>
11 lines
333 B
C#
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; }
|
|
} |