12 lines
131 B
C#
12 lines
131 B
C#
namespace DebuggingEssentials
|
|
{
|
|
public enum Flag
|
|
{
|
|
Log = 1,
|
|
Warning = 2,
|
|
Error = 4,
|
|
Exception = 8,
|
|
Command = 0x10
|
|
}
|
|
}
|