6 lines
70 B
C#
6 lines
70 B
C#
|
public enum LogTarget
|
||
|
{
|
||
|
Console = 0,
|
||
|
File = 1,
|
||
|
Slack = 2
|
||
|
}
|