mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-13 19:33:52 +00:00
e97f9a7382
* qfont.ttf: * QIcon.cs: Add LIST and LEFT_DIR icons * Info.plist: * AndroidManifest.xml: Update Version Numbers * App.xaml.cs: * QCue.cs: * MenuPage.xaml.cs: * QCueList.cs: * ControlPage.xaml.cs: * QWorkSpace.cs: * QCueListCell.cs: * qConnectionPage.xaml.cs: * QParser.cs: * QUpdater.cs: * QController.cs: Android v1.0.8 / iOS v2.0.8
26 lines
621 B
C#
26 lines
621 B
C#
using System.Collections.Generic;
|
|
|
|
namespace qController
|
|
{
|
|
public class QCueList
|
|
{
|
|
public string number { get; set; }
|
|
public string uniqueID { get; set; }
|
|
public List<QCue> cues { 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 string IconText
|
|
{
|
|
get
|
|
{
|
|
return QIcon.LIST;
|
|
}
|
|
}
|
|
}
|
|
}
|