FastGithub/FastGithub.UI/LogLevel.cs
xingyuan55 4d9d97f871 start
2022-11-16 08:01:03 +08:00

16 lines
270 B
C#

namespace FastGithub.UI
{
/// <summary>
/// 日志等级
/// </summary>
public enum LogLevel
{
Verbose,
Debug,
Information,
Warning,
Error,
Fatal
}
}