chore: necessary updates given the changes in the alert controller

This commit is contained in:
voltsrage
2026-06-25 00:40:47 +08:00
parent 666d683d67
commit 7bb9124230
32 changed files with 353 additions and 40 deletions
@@ -9,6 +9,10 @@ public class ReplayResult
public int OrdersPlaced { get; set; }
public int OrdersResulted { get; set; }
public TimeSpan Duration { get; set; }
public List<string> OutcomeFailures { get; } = new();
public bool HadExpectedOutcomes { get; set; }
public bool OutcomesPassed => OutcomeFailures.Count == 0;
public ReplayResult(string scenarioId) => ScenarioId = scenarioId;
}