simplelogger/LogLevel.cs
2021-05-09 03:11:01 -05:00

10 lines
130 B
C#

namespace SimpleLogger
{
public enum LogLevel : int
{
Fatal,
Info,
Warning,
Debug,
}
}