mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-15 12:23:59 +00:00
30 lines
1007 B
C#
30 lines
1007 B
C#
using System;
|
|
using Newtonsoft.Json.Linq;
|
|
namespace qController
|
|
{
|
|
public class QCue
|
|
{
|
|
public string number { get; set; }
|
|
public string uniqueID { get; set; }
|
|
public bool flagged { get; set; }
|
|
public string listName { get; set; }
|
|
public string type { get; set; }
|
|
public string colorName { get; set; }
|
|
public string name { get; set; }
|
|
public bool armed { get; set; }
|
|
public int translationX { get; set; }
|
|
public bool isRunning { get; set; }
|
|
public int scaleX { get; set; }
|
|
public bool isPaused { get; set; }
|
|
public int translationY { get; set; }
|
|
public int preWait { get; set; }
|
|
public int opacity { get; set; }
|
|
public int scaleY { get; set; }
|
|
public int duration { get; set; }
|
|
public int postWait { get; set; }
|
|
public bool isBroken { get; set; }
|
|
public string displayName { get; set; }
|
|
public bool isLoaded { get; set; }
|
|
}
|
|
}
|