mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 22:12:11 +00:00
13 lines
292 B
C#
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; }
|
|
}
|