mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-13 19:33:52 +00:00
17 lines
448 B
C#
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; }
|
|
}
|
|
}
|