Cover art record saved in the database. Next is to save the song record to the database and then try to download the song afterwards

This commit is contained in:
kdeng00
2019-08-24 18:41:01 -04:00
parent 9281293fad
commit 1db3eb2f8c
11 changed files with 205 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef COVERFILTER_H_
#define COVERFILTER_H_
enum class coverFilter
{
id = 0,
songTitle,
imagePath
};
#endif
+14
View File
@@ -0,0 +1,14 @@
#ifndef SONGFILTER_H_
#define SONGFILTER_H_
enum class songFilter
{
id = 0,
title,
album,
artist,
genre,
year
};
#endif