Resolves #186 - Completely refactored HD-MD-Switch Class

This commit is contained in:
Trevor Payne
2020-05-15 10:42:56 -05:00
parent aef491855c
commit efd4f379ee
6 changed files with 310 additions and 96 deletions

View File

@@ -18,9 +18,9 @@ namespace PepperDash.Essentials.DM.Config
public ControlPropertiesConfig Control { get; set; }
[JsonProperty("inputs")]
public Dictionary<string, InputPropertiesConfig> Inputs { get; set; }
[JsonProperty("outputs"]
public Dictionary<string, OutputPropertiesConfig>
public Dictionary<uint, string> Inputs { get; set; }
[JsonProperty("outputs")]
public Dictionary<uint, string> Outputs { get; set; }
}
}