mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 02:29:59 +00:00
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
"use strict";
|
|
|
|
export default class SeekRequest {
|
|
constructor () {
|
|
this.currentTime = null;
|
|
this.customData = null;
|
|
this.resumeState = null;
|
|
}
|
|
}
|