.NET WinForms-Anwendung (Core, Modules/CongressTrading, UI). Enthaelt .gitignore und settings.example.json als Konfigurationsvorlage. Echte settings.json mit Zugangsdaten ist bewusst ausgeschlossen. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
108 B
C#
9 lines
108 B
C#
namespace IBKRTrader.Core.Logging;
|
|
|
|
public enum AppLogLevel
|
|
{
|
|
Info = 0,
|
|
Warn = 1,
|
|
Error = 2
|
|
}
|