feat(BuildCalc) Finished training capacity feature

This commit is contained in:
2022-04-24 14:11:51 -04:00
parent f3cc7bf148
commit 6fec1a96c0
3 changed files with 72 additions and 30 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ public class BuildOrderModel
public Dictionary<string, int> UniqueCompletedCount { get; set; } = new();
public Dictionary<int, int> SupplyCountTimes { get; set; } = new();
public Dictionary<string, Dictionary<int, List<EntityModel>>> UniqueCompleted { get; set; } = new();
public Dictionary<string, List<EntityModel>> UniqueCompleted { get; set; } = new();
public List<TrainingCapacityUsedModel> TrainingCapacityUsed { get; set; } = new();