Files
qController/qController.Standard/Classes/QItems/QCueList.cs
T
2021-03-27 16:19:11 -05:00

27 lines
677 B
C#

using System.Collections.Generic;
using qController.Helpers;
namespace qController.QItems
{
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 IconConstants.FormatListBulleted;
}
}
}
}