Used AI to restructure the razor pages into distinct nodes.

This commit is contained in:
2026-08-12 13:18:16 +02:00
parent 610468effc
commit ae3b61c6fb
5 changed files with 423 additions and 269 deletions

8
Models/PipelineStep.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace BattSim.Models;
public struct PipelineStep
{
public bool Expanded;
public bool Completed;
public bool isProcessing;
}