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