mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 22:01:17 +00:00
15 lines
269 B
C#
15 lines
269 B
C#
namespace WandEnhancer.View.MainWindow
|
|
{
|
|
public enum ELogType
|
|
{
|
|
Info,
|
|
Warn,
|
|
Error,
|
|
Success
|
|
}
|
|
public class LogEntry
|
|
{
|
|
public ELogType LogType { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
} |