first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import {PlaylistModel} from "../playlist/playlist.model";
|
||||
|
||||
export interface TrackModel {
|
||||
id?: number;
|
||||
artist: string;
|
||||
song: string;
|
||||
spotifyUrl: string;
|
||||
youtubeUrl?: string;
|
||||
status?: TrackStatusEnum,
|
||||
playlist?: PlaylistModel;
|
||||
}
|
||||
|
||||
export enum TrackStatusEnum {
|
||||
New,
|
||||
Queued,
|
||||
Completed,
|
||||
}
|
||||
Reference in New Issue
Block a user