mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 13:42:56 +00:00
11 lines
369 B
C#
11 lines
369 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public sealed class ContentStreamPresentationMetadata : ContentStreamSseMetadata
|
|
{
|
|
[JsonPropertyName("Presentation")]
|
|
public ContentStreamPresentationDetails? Presentation { get; init; }
|
|
} |