fix: correct UserInterfaces type and initialize TouchpanelWrapperApp in VersionData constructor

This commit is contained in:
Neil Dorin 2026-06-12 11:17:11 -06:00
parent 1b2f86eb43
commit 4403e91b79

View file

@ -125,7 +125,8 @@ public class VersionData
/// </summary>
public VersionData()
{
UserInterfaces = new List<UserInterfaces>();
UserInterfaces = new List<AppVersion>();
TouchpanelWrapperApp = new AppVersion();
Packages = new List<NugetVersion>();
}
}