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

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; }
}