Implementing plugin loading for api server and client
This commit is contained in:
11
Moonlight.ApiServer/Models/PluginManifest.cs
Normal file
11
Moonlight.ApiServer/Models/PluginManifest.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Moonlight.ApiServer.Models;
|
||||
|
||||
public class PluginManifest
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Author { get; set; }
|
||||
public string[] Dependencies { get; set; } = [];
|
||||
|
||||
public Dictionary<string, string[]> Entrypoints { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user