mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-06 16:03:48 +00:00
fe8bd257d1
- No more UDP - Lots of random refactoring as well
12 lines
308 B
C#
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; }
|
|
}
|
|
}
|