mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 01:42:57 +00:00
11 lines
293 B
C#
11 lines
293 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public class ContentStreamPdfDetails
|
|
{
|
|
[JsonPropertyName("page_number")]
|
|
public int? PageNumber { get; init; }
|
|
} |