rdt-client/server/RdtClient.Data/Enums/LogLevel.cs
2024-04-06 16:28:03 -06:00

21 lines
No EOL
303 B
C#

using System.ComponentModel;
namespace RdtClient.Data.Enums;
public enum LogLevel
{
[Description("Verbose")]
Verbose,
[Description("Debug")]
Debug,
[Description("Information")]
Information,
[Description("Warning")]
Warning,
[Description("Error")]
Error
}