AI-Studio/app/MindWork AI Studio/Tools/PluginSystem/Assistants/DataModel/IAssistantComponent.cs
2026-02-24 11:39:17 +01:00

8 lines
239 B
C#

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