mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 13:22:57 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <mail@tsommer.org>
18 lines
408 B
C#
18 lines
408 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; }
|
|
} |