2025-04-12 19:13:33 +00:00
|
|
|
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
|
|
|
|
|
|
public interface IAvailablePlugin : IPluginMetadata
|
|
|
|
|
{
|
|
|
|
|
public string LocalPath { get; }
|
2026-02-16 14:25:52 +00:00
|
|
|
public bool IsManagedByConfigServer { get; }
|
2025-04-12 19:13:33 +00:00
|
|
|
}
|