Files
qController/qController.Standard/Classes/Cues/QCue.cs
T

17 lines
448 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; }
}
}