mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 00:19:48 +00:00
10 lines
275 B
C#
10 lines
275 B
C#
namespace AIStudio.Tools;
|
|
|
|
public sealed class WriterChunk(ReadOnlyMemory<char> content, bool isSelected, bool isProcessing)
|
|
{
|
|
public ReadOnlyMemory<char> Content = content;
|
|
|
|
public bool IsSelected = isSelected;
|
|
|
|
public bool IsProcessing = isProcessing;
|
|
} |