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

8 lines
242 B
C#
Raw Normal View History

2025-07-21 13:10:40 +00:00
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
public interface IAssistantComponent
{
AssistantUiCompontentType Type { get; }
Dictionary<string, object> Props { get; }
List<IAssistantComponent> Children { get; }
}