added a media type to image data to distingush between .png and .jpg images for documents

This commit is contained in:
Nils Kruthoff 2026-07-27 19:37:10 +02:00
parent 5b737543ce
commit 40cfb77cb3
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C

View File

@ -15,4 +15,7 @@ public sealed class ContentStreamPptxImageData
[JsonPropertyName("is_end")]
public bool IsEnd { get; init; }
}
[JsonPropertyName("media_type")]
public string? MediaType { get; init; }
}