mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
18 lines
574 B
TypeScript
18 lines
574 B
TypeScript
"use strict";
|
|
|
|
import Image from "../../classes/Image";
|
|
|
|
import { MetadataType } from "../enums";
|
|
|
|
|
|
export default class MovieMediaMetadata {
|
|
public images: (Image[] | undefined) = undefined;
|
|
public metadataType: number = MetadataType.MOVIE;
|
|
public releaseDate: (string | undefined) = undefined;
|
|
public releaseYear: (number | undefined) = undefined;
|
|
public studio: (string | undefined) = undefined;
|
|
public subtitle: (string | undefined) = undefined;
|
|
public title: (string | undefined) = undefined;
|
|
public type: number = MetadataType.MOVIE;
|
|
}
|