Add plugin methods for changed themes, settings showing message boxes and logging

This commit is contained in:
Stone_Red
2025-12-25 01:22:39 +01:00
parent 4778f5673f
commit 43c77e6a36
7 changed files with 115 additions and 49 deletions
+22
View File
@@ -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
}