Star work on Multiple Workspaces, Improve Networks

Android version 1.0.5
This commit is contained in:
2019-04-25 08:44:20 -05:00
parent 17b66f9113
commit 5ad19ffbdb
10 changed files with 107 additions and 52 deletions
@@ -0,0 +1,11 @@
using System;
namespace qController
{
public class QInfo
{
public string version { get; set; }
public string displayName { get; set; }
public string uniqueID { get; set; }
public bool hasPasscode { get; set; }
}
}
@@ -33,6 +33,7 @@ namespace qController
{
if(data[i].cues[j].uniqueID == cue.uniqueID)
{
//Console.WriteLine("Cue found and updated in workspace: " + cue.uniqueID);
data[i].cues[j] = cue;
return;
}