Adds missing models, oops

This commit is contained in:
aarbit 2024-06-07 22:57:42 -05:00
parent f6921b7025
commit 43ecf7e3e4
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,7 @@
import {AlbumTrackInfo} from "./AlbumTrackInfo.ts";
export interface AlbumInfo {
albumTitle: string,
albumFolder: string,
hash: string
albumArtist: string,
trackList: AlbumTrackInfo[]
}

5
src/AlbumMetadata.ts Normal file
View File

@ -0,0 +1,5 @@
export interface AlbumMetadata {
albumTitle: string,
albumFolder: string,
hash: string
}