mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 12:12:12 +00:00
7 lines
137 B
C#
7 lines
137 B
C#
|
|
namespace AIStudio.Assistants.Dynamic;
|
||
|
|
|
||
|
|
public sealed class FileContentState
|
||
|
|
{
|
||
|
|
public string Content { get; set; } = string.Empty;
|
||
|
|
}
|