mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 22:59:47 +00:00
6 lines
132 B
C#
6 lines
132 B
C#
|
namespace AIStudio.Tools.PluginSystem;
|
||
|
|
||
|
public interface IAvailablePlugin : IPluginMetadata
|
||
|
{
|
||
|
public string LocalPath { get; }
|
||
|
}
|