mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-10 01:43:46 +00:00
13 lines
306 B
C#
13 lines
306 B
C#
//General information about a QLab Workspace
|
|
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; }
|
|
}
|
|
}
|