Moved to Json Database for online plugins

This commit is contained in:
2024-02-26 23:36:19 +02:00
parent 196fb6d3d1
commit 14f280baef
16 changed files with 376 additions and 299 deletions

View File

@@ -1,4 +1,6 @@
namespace PluginManager.Others;
using System;
namespace PluginManager.Others;
/// <summary>
/// The output log type
@@ -28,3 +30,12 @@ public enum InternalActionRunType
ON_STARTUP,
ON_CALL
}
[Flags]
public enum OSType : byte
{
NONE = 0,
WINDOWS = 1 << 0,
LINUX = 2 << 1,
MACOSX = 3 << 2,
}