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