mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 17:31:37 +00:00
7 lines
157 B
C#
7 lines
157 B
C#
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
|
|
|
public interface INamedAssistantComponent : IAssistantComponent
|
|
{
|
|
string Name { get; }
|
|
}
|