Files
2026-03-04 09:37:33 +08:00

12 lines
131 B
C#

namespace DebuggingEssentials
{
public enum Flag
{
Log = 1,
Warning = 2,
Error = 4,
Exception = 8,
Command = 0x10
}
}