mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-10 09:53:53 +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; }
|
|
}
|
|
}
|