Initial Commit

This commit is contained in:
2020-06-08 14:11:54 -05:00
commit 830e905300
24 changed files with 2129 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
//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; }
}
}