mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-13 02:49:58 +00:00
Move media directory under cast
This commit is contained in:
17
ext/src/shim/cast/media/classes/MovieMediaMetadata.ts
Normal file
17
ext/src/shim/cast/media/classes/MovieMediaMetadata.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
|
||||
import Image from "../../classes/Image";
|
||||
|
||||
import { MetadataType } from "../enums";
|
||||
|
||||
|
||||
export default class MovieMediaMetadata {
|
||||
public images: Image[] = null;
|
||||
public metadataType: number = MetadataType.MOVIE;
|
||||
public releaseDate: string = null;
|
||||
public releaseYear: number = null;
|
||||
public studio: string = null;
|
||||
public subtitle: string = null;
|
||||
public title: string = null;
|
||||
public type: number = MetadataType.MOVIE;
|
||||
}
|
||||
Reference in New Issue
Block a user