mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 17:31:37 +00:00
7 lines
139 B
C#
7 lines
139 B
C#
|
|
namespace AIStudio.Assistants.Dynamic;
|
||
|
|
|
||
|
|
internal sealed class FileContentState
|
||
|
|
{
|
||
|
|
public string Content { get; set; } = string.Empty;
|
||
|
|
}
|