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