Working on module/plugin system
This commit is contained in:
12
Moonlight.ApiServer/Models/PluginMeta.cs
Normal file
12
Moonlight.ApiServer/Models/PluginMeta.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Moonlight.ApiServer.Models;
|
||||
|
||||
public class PluginMeta
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Author { get; set; }
|
||||
public string? DonationUrl { get; set; }
|
||||
public string? UpdateUrl { get; set; }
|
||||
|
||||
public Dictionary<string, string[]> Binaries { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user