mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
13 lines
302 B
JavaScript
13 lines
302 B
JavaScript
"use strict";
|
|
|
|
export default class QueueInsertItemsRequest {
|
|
constructor (itemsToInsert) {
|
|
this.customData = null;
|
|
this.insertBefore = null;
|
|
this.items = itemsToInsert;
|
|
this.requestId = null;
|
|
this.sessionId = null;
|
|
this.type = "QUEUE_INSERT";
|
|
}
|
|
}
|