Files
IBKRTrader/Core/Workers/WorkerStatus.cs
T
RichardandClaude Opus 4.8 ebeb035e92 Initial commit: IBKRTrader
.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>
2026-07-26 18:19:47 +02:00

11 lines
125 B
C#

namespace IBKRTrader.Core.Workers;
public enum WorkerStatus
{
Idle,
Running,
Error,
Stopped,
Disabled
}