10 lines
146 B
C#
10 lines
146 B
C#
|
|
namespace LANCommander.Server.Settings.Enums;
|
||
|
|
|
||
|
|
public enum LoggingProviderType
|
||
|
|
{
|
||
|
|
File,
|
||
|
|
Console,
|
||
|
|
SignalR,
|
||
|
|
Seq,
|
||
|
|
ElasticSearch,
|
||
|
|
}
|