AI-Studio/app/MindWork AI Studio/Tools/ContentStreamPptxImageData.cs
nilskruthoff 6eab9dc574
Improved docx and odt import (#890)
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
2026-08-10 20:39:31 +02:00

22 lines
491 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; }
[JsonPropertyName("media_type")]
public string? MediaType { get; init; }
}