6 lines
66 B
C#
6 lines
66 B
C#
|
public enum LogType
|
||
|
{
|
||
|
Info = 0,
|
||
|
Error = 1,
|
||
|
Fatal = 2
|
||
|
}
|