mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 17:41:36 +00:00
8 lines
302 B
C#
8 lines
302 B
C#
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
|
|
|
public abstract class AssistantComponentBase : IAssistantComponent
|
|
{
|
|
public abstract AssistantUiCompontentType Type { get; }
|
|
public Dictionary<string, object> Props { get; }
|
|
public List<IAssistantComponent> Children { get; }
|
|
} |