24 lines
No EOL
354 B
C#
24 lines
No EOL
354 B
C#
using System.ComponentModel;
|
|
|
|
namespace RdtClient.Data.Enums;
|
|
|
|
public enum DownloadClientLogLevel
|
|
{
|
|
[Description("Verbose")]
|
|
Verbose,
|
|
|
|
[Description("Debug")]
|
|
Debug,
|
|
|
|
[Description("Information")]
|
|
Information,
|
|
|
|
[Description("Warning")]
|
|
Warning,
|
|
|
|
[Description("Error")]
|
|
Error,
|
|
|
|
[Description("None")]
|
|
None
|
|
} |