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