Update entry command

This commit is contained in:
mProjectsCode 2022-05-19 22:59:01 +02:00
parent a2b6847325
commit 16299feced
8 changed files with 62 additions and 3 deletions

View file

@ -5,6 +5,7 @@ import {mediaDbTag} from '../utils/Utils';
export class SeriesModel extends MediaTypeModel {
type: string;
subType: string;
title: string;
englishTitle: string;
year: string;
@ -33,6 +34,8 @@ export class SeriesModel extends MediaTypeModel {
super();
Object.assign(this, obj);
this.type = 'series';
}
toMetaData(): string {