diff --git a/src/AlbumInfo.ts b/src/AlbumInfo.ts index 8748e0f..f114c3e 100644 --- a/src/AlbumInfo.ts +++ b/src/AlbumInfo.ts @@ -1,5 +1,7 @@ +import {AlbumTrackInfo} from "./AlbumTrackInfo.ts"; + export interface AlbumInfo { albumTitle: string, - albumFolder: string, - hash: string + albumArtist: string, + trackList: AlbumTrackInfo[] } \ No newline at end of file diff --git a/src/AlbumMetadata.ts b/src/AlbumMetadata.ts new file mode 100644 index 0000000..7cc8d50 --- /dev/null +++ b/src/AlbumMetadata.ts @@ -0,0 +1,5 @@ +export interface AlbumMetadata { + albumTitle: string, + albumFolder: string, + hash: string +} \ No newline at end of file