mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 12:02:57 +00:00
10 lines
238 B
C#
10 lines
238 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public class ContentStreamTextDetails
|
|
{
|
|
[JsonPropertyName("line_number")]
|
|
public int? LineNumber { get; init; }
|
|
} |