AI-Studio/app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs
nilskruthoff aaedf667fe
Allow loading any document in some assistants (#508)
Co-authored-by: krut_ni <nils.kruthoff@dlr.de>
Co-authored-by: Thorsten Sommer <mail@tsommer.org>
2025-06-30 18:56:48 +02:00

18 lines
408 B
C#

using System.Text.Json.Serialization;
namespace AIStudio.Tools;
public sealed class ContentStreamPptxImageData
{
[JsonPropertyName("id")]
public string? Id { get; init; }
[JsonPropertyName("content")]
public string? Content { get; init; }
[JsonPropertyName("segment")]
public int? Segment { get; init; }
[JsonPropertyName("is_end")]
public bool IsEnd { get; init; }
}