mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 21:11:38 +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;
|
|
}
|