mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 19:31:38 +00:00
9 lines
282 B
C#
9 lines
282 B
C#
|
|
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; }
|
|||
|
|
}
|