mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-04 15:07:59 +00:00
12 lines
296 B
C#
12 lines
296 B
C#
//General information about a QLab Workspace
|
|
namespace QSharp
|
|
{
|
|
public class QWorkspaceInfo
|
|
{
|
|
public string version { get; set; }
|
|
public string displayName { get; set; }
|
|
public string uniqueID { get; set; }
|
|
public bool hasPasscode { get; set; }
|
|
}
|
|
}
|