Merge branch 'master' of https://github.com/mProjectsCode/obsidian-media-db-plugin
This commit is contained in:
commit
12ebebc228
7 changed files with 33 additions and 7 deletions
|
|
@ -10,6 +10,7 @@ export class MusicReleaseModel extends MediaTypeModel {
|
|||
artists: string[];
|
||||
image: string;
|
||||
rating: number;
|
||||
releaseDate: string;
|
||||
|
||||
userData: {
|
||||
personalRating: number;
|
||||
|
|
@ -22,6 +23,8 @@ export class MusicReleaseModel extends MediaTypeModel {
|
|||
this.artists = [];
|
||||
this.image = '';
|
||||
this.rating = 0;
|
||||
this.releaseDate = '';
|
||||
|
||||
this.userData = {
|
||||
personalRating: 0,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue