mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-09 23:01:38 +00:00
8 lines
239 B
C#
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; }
|
|||
|
|
}
|