AI-Studio/app/MindWork AI Studio/Tools/PluginSystem/Assistants/DataModel/IAssistantComponent.cs

8 lines
221 B
C#
Raw Normal View History

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