AI-Studio/app/MindWork AI Studio/Assistants/Dynamic/WebContentState.cs

10 lines
280 B
C#
Raw Normal View History

2026-04-09 08:01:24 +00:00
namespace AIStudio.Assistants.Dynamic;
public sealed class WebContentState
{
public string Content { get; set; } = string.Empty;
public bool Preselect { get; set; }
public bool PreselectContentCleanerAgent { get; set; }
public bool AgentIsRunning { get; set; }
}