🏗 Added classes for songs, albums & artists.

This is going to be an ambitious project.
This commit is contained in:
corner 2019-09-22 15:13:12 +02:00
parent eec71cf6d7
commit 73cc6d7784
6 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import { Album } from './album';
describe('Album', () => {
it('should create an instance', () => {
expect(new Album()).toBeTruthy();
});
});

2
src/app/classes/album.ts Normal file
View File

@ -0,0 +1,2 @@
export class Album {
}

View File

@ -0,0 +1,7 @@
import { Artist } from './artist';
describe('Artist', () => {
it('should create an instance', () => {
expect(new Artist()).toBeTruthy();
});
});

View File

@ -0,0 +1,2 @@
export class Artist {
}

View File

@ -0,0 +1,7 @@
import { Song } from './song';
describe('Song', () => {
it('should create an instance', () => {
expect(new Song()).toBeTruthy();
});
});

2
src/app/classes/song.ts Normal file
View File

@ -0,0 +1,2 @@
export class Song {
}