mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 19:11:38 +00:00
9 lines
328 B
C#
9 lines
328 B
C#
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
|
|
|
public abstract class AssistantComponentBase : IAssistantComponent
|
|
{
|
|
public abstract AssistantComponentType Type { get; }
|
|
public abstract Dictionary<string, object> Props { get; set; }
|
|
public abstract List<IAssistantComponent> Children { get; set; }
|
|
}
|