This commit is contained in:
2022-07-05 20:32:51 +03:00
parent c6e8976456
commit 3abb4cdda7
6 changed files with 104 additions and 10 deletions

View File

@@ -1,4 +1,6 @@
namespace PluginManager.Others;
using PluginManager.Interfaces;
namespace PluginManager.Others;
/// <summary>
/// A list of operating systems
@@ -20,3 +22,8 @@ public enum Error
/// The output log type
/// </summary>
public enum OutputLogLevel { NONE, INFO, WARNING, ERROR, CRITICAL }
/// <summary>
/// Plugin Type
/// </summary>
public enum PluginType { Command, Event, Unknown }