fix: initializes LevelControlLists in config

This commit is contained in:
Neil Dorin
2024-05-16 22:44:57 -06:00
parent 0067e11d3d
commit 7e736ae519

View File

@@ -40,6 +40,7 @@ namespace PepperDash.Essentials.Core.Config
Devices = new List<DeviceConfig>();
SourceLists = new Dictionary<string, Dictionary<string, SourceListItem>>();
DestinationLists = new Dictionary<string, Dictionary<string, DestinationListItem>>();
LevelControlLists = new Dictionary<string, Dictionary<string, LevelControlListItem>>();
TieLines = new List<TieLineConfig>();
JoinMaps = new Dictionary<string, JObject>();
}