mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-20 11:01:37 +00:00
10 lines
240 B
C#
10 lines
240 B
C#
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
public interface IAvailablePlugin : IPluginMetadata
|
|
{
|
|
public string LocalPath { get; }
|
|
|
|
public bool IsManagedByConfigServer { get; }
|
|
|
|
public Guid? ManagedConfigurationId { get; }
|
|
} |