added basic MAL api

This commit is contained in:
mProjectsCode 2022-05-06 11:36:22 +02:00
parent 30d07f79f3
commit 413a855e07
6 changed files with 114 additions and 7 deletions

View file

@ -1,7 +1,7 @@
export abstract class MediaTypeModel {
type: string;
title: string;
premiere: string;
year: string;
dataSource: string;
id: string;

View file

@ -5,7 +5,7 @@ import {stringifyYaml} from 'obsidian';
export class MovieModel extends MediaTypeModel {
type: string;
title: string;
premiere: string;
year: string;
dataSource: string;
id: string;
@ -16,6 +16,7 @@ export class MovieModel extends MediaTypeModel {
image: string;
released: boolean;
premiere: string;
watched: boolean;
lastWatched: string;