mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 20:41:37 +00:00
8 lines
242 B
C#
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; }
|
|
} |