mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-09 23:01:38 +00:00
10 lines
280 B
C#
10 lines
280 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; }
|
||
|
|
}
|