mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 22:02:57 +00:00
6 lines
173 B
C#
6 lines
173 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace AIStudio.Tools;
|
||
|
|
||
|
[JsonConverter(typeof(ContentStreamMetadataJsonConverter))]
|
||
|
public abstract class ContentStreamSseMetadata;
|