Class Queue
- Namespace
- XeroxDev.YTMDesktop.Companion.Models.Output
- Assembly
- XeroxDev.YTMDesktop.Companion.dll
The queue
public class Queue
- Inheritance
-
Queue
- Inherited Members
Properties
AutomixItems
The automix items
[JsonProperty("automixItems")]
public QueueItem[] AutomixItems { get; set; }
Property Value
Autoplay
If autoplay is enabled
[JsonProperty("autoplay")]
public bool Autoplay { get; set; }
Property Value
IsGenerating
If the queue is generating
[JsonProperty("isGenerating")]
public bool IsGenerating { get; set; }
Property Value
IsInfinite
If the queue is infinite
[JsonProperty("isInfinite")]
public bool IsInfinite { get; set; }
Property Value
Items
The queue items
[JsonProperty("items")]
[JsonRequired]
public QueueItem[] Items { get; set; }
Property Value
RepeatMode
The repeat mode
[JsonProperty("repeatMode")]
public ERepeatMode RepeatMode { get; set; }
Property Value
SelectedItemIndex
The selected item index
[JsonProperty("selectedItemIndex")]
public int SelectedItemIndex { get; set; }