mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 17:06:12 +02:00
Add plugin methods for changed themes, settings showing message boxes and logging
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace DesktopMagic.Api;
|
||||
|
||||
/// <summary>
|
||||
/// Specifies the severity level of a log message.
|
||||
/// </summary>
|
||||
public enum LogLevel
|
||||
{
|
||||
/// <summary>
|
||||
/// Informational message for general information.
|
||||
/// </summary>
|
||||
Info,
|
||||
|
||||
/// <summary>
|
||||
/// Warning message indicating a potential issue.
|
||||
/// </summary>
|
||||
Warning,
|
||||
|
||||
/// <summary>
|
||||
/// Error message indicating a failure or critical issue.
|
||||
/// </summary>
|
||||
Error
|
||||
}
|
||||
Reference in New Issue
Block a user