mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-10 09:39:58 +00:00
17 lines
391 B
TypeScript
17 lines
391 B
TypeScript
"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;
|
|
}
|