mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 23:22:56 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <mail@tsommer.org>
10 lines
245 B
C#
10 lines
245 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public sealed class ContentStreamTextDetails
|
|
{
|
|
[JsonPropertyName("line_number")]
|
|
public int? LineNumber { get; init; }
|
|
} |