rdt-client/server/RdtClient.Data/Enums/LogLevel.cs
2026-02-11 19:44:49 -07:00

21 lines
304 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
}