mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 02:29:59 +00:00
Add newer cast API additions and stub methods
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
|
||||
import Image from "../../classes/Image";
|
||||
|
||||
import { MetadataType } from "../enums";
|
||||
|
||||
|
||||
export default class AudiobookChapterMediaMetadata {
|
||||
public bookTitle?: string;
|
||||
public chapterNumber?: number;
|
||||
public chapterTitle?: string;
|
||||
public images?: Image[];
|
||||
public subtitle?: string;
|
||||
public title?: string;
|
||||
public type = MetadataType.AUDIOBOOK_CHAPTER;
|
||||
}
|
||||
Reference in New Issue
Block a user