|
|
|
@ -25,6 +25,7 @@ public class BuildOrderModel |
|
|
|
public int CurrentSupplyUsed { get; set; } = 0; |
|
|
|
public int CurrentSupplyUsed { get; set; } = 0; |
|
|
|
public Dictionary<int, List<EntityModel>> StartedOrders { get; set; } = new(); |
|
|
|
public Dictionary<int, List<EntityModel>> StartedOrders { get; set; } = new(); |
|
|
|
public Dictionary<int, List<EntityModel>> CompletedOrders { get; set; } = new(); |
|
|
|
public Dictionary<int, List<EntityModel>> CompletedOrders { get; set; } = new(); |
|
|
|
|
|
|
|
public Dictionary<int, List<EntityModel>> DepletedOrders { get; set; } = new(); |
|
|
|
public Dictionary<string, int> UniqueCompletedTimes { get; set; } = new(); |
|
|
|
public Dictionary<string, int> UniqueCompletedTimes { get; set; } = new(); |
|
|
|
public Dictionary<string, int> UniqueCompletedCount { get; set; } = new(); |
|
|
|
public Dictionary<string, int> UniqueCompletedCount { get; set; } = new(); |
|
|
|
public Dictionary<int, int> SupplyCountTimes { get; set; } = new(); |
|
|
|
public Dictionary<int, int> SupplyCountTimes { get; set; } = new(); |
|
|
|
|