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

24 lines
355 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
}