mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 12:02:57 +00:00
14 lines
382 B
C#
14 lines
382 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
// ReSharper disable ClassNeverInstantiated.Global
|
|
public class ContentStreamSpreadsheetDetails
|
|
{
|
|
[JsonPropertyName("sheet_name")]
|
|
public string? SheetName { get; init; }
|
|
|
|
[JsonPropertyName("row_number")]
|
|
public int? RowNumber { get; init; }
|
|
} |