mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-11 02:13:55 +00:00
14 lines
303 B
C#
14 lines
303 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace qController
|
|
{
|
|
public class QWorkSpace
|
|
{
|
|
public string status { get; set; }
|
|
public List<QCueList> data { get; set; }
|
|
public string workspace_id { get; set; }
|
|
public string address { get; set; }
|
|
}
|
|
}
|