AI-Studio/app/MindWork AI Studio/Tools/PluginSystem/Assistants/DataModel/IAssistantComponent.cs
2025-07-21 15:10:40 +02:00

8 lines
242 B
C#

namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
public interface IAssistantComponent
{
AssistantUiCompontentType Type { get; }
Dictionary<string, object> Props { get; }
List<IAssistantComponent> Children { get; }
}