Moved to Json Database for online plugins
This commit is contained in:
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user