mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-05 01:31:41 +02:00
Updates to search page
This commit is contained in:
@ -4,7 +4,7 @@ import { Artist } from './artist.model';
|
||||
|
||||
export class Song {
|
||||
|
||||
constructor(title: string, artist: Artist, karafun_id: number, duet: boolean, explicit: boolean, id: number, genres: Array<Genre>, languages: Array<Language>) {
|
||||
constructor(title: string, artist: Artist, karafun_id: number, duet: boolean, explicit: boolean, id: number, genres: Array<String>, languages: Array<String>) {
|
||||
this.title=title;
|
||||
this.artist=artist;
|
||||
this.karafun_id=karafun_id;
|
||||
@ -21,6 +21,6 @@ export class Song {
|
||||
duet: boolean;
|
||||
explicit: boolean;
|
||||
id: number;
|
||||
genres: Array<Genre>;
|
||||
languages: Array<Language>;
|
||||
genres: Array<String>;
|
||||
languages: Array<String>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user