Files
Moonlight/Moonlight.ApiServer/Models/PluginManifest.cs
2024-11-19 16:28:25 +01:00

11 lines
313 B
C#

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();
}