Files
qController/qController.Standard/Classes/QItems/QWorkspaceInfo.cs
T
jwetzell fe8bd257d1 Switch to only TCP Communication
- No more UDP
- Lots of random refactoring as well
2020-06-06 12:12:23 -05:00

12 lines
308 B
C#

//General information about a QLab Workspace
namespace qController.QItems
{
public class QWorkspaceInfo
{
public string version { get; set; }
public string displayName { get; set; }
public string uniqueID { get; set; }
public bool hasPasscode { get; set; }
}
}