AI-Studio/app/MindWork AI Studio/Tools/ContentStreamDocumentDetails.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

13 lines
292 B
C#

using System.Text.Json.Serialization;
namespace AIStudio.Tools;
public sealed class ContentStreamDocumentDetails
{
[JsonPropertyName("page_number")]
public int? PageNumber { get; init; }
[JsonPropertyName("image")]
public ContentStreamPptxImageData? Image { get; init; }
}