10 lines
118 B
C#
10 lines
118 B
C#
namespace EmbyToolbox.Services;
|
|
|
|
public enum LogLevel
|
|
{
|
|
Debug = 0,
|
|
Info = 1,
|
|
Warning = 2,
|
|
Error = 3
|
|
}
|