add:插件

屎山
This commit is contained in:
PrefacedCorg
2026-04-10 01:24:57 +08:00
parent 256b3c0887
commit 84b626d344
17 changed files with 842 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace Ink_Canvas.Plugins
{
public class PluginInfo
{
public string Id { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public string Description { get; set; }
public string Author { get; set; }
public int Order { get; set; }
public IPlugin Instance { get; set; }
public bool IsLoaded { get; set; }
}
}