fix: update access level for config constructor

This commit is contained in:
Andrew Welker
2021-07-19 15:10:03 -06:00
parent 10129b8178
commit 45e6dff26d

View File

@@ -7,7 +7,7 @@ namespace PepperDash.Essentials.Core
{ {
[JsonProperty("deviceKeys")] public List<string> DeviceKeys { get; set; } [JsonProperty("deviceKeys")] public List<string> DeviceKeys { get; set; }
OccupancyAggregatorConfig() public OccupancyAggregatorConfig()
{ {
DeviceKeys = new List<string>(); DeviceKeys = new List<string>();
} }