Got functionality working

This commit is contained in:
kdeng00
2022-01-01 00:39:35 -05:00
parent 3e25dd77b5
commit 1ef40bcbfb
8 changed files with 221 additions and 48 deletions
+6
View File
@@ -10,6 +10,12 @@ namespace Models
{
nlohmann::json s;
s["title"] = this->title;
s["artist"] = this->artist;
s["album"] = this->album;
s["genre"] = this->genre;
s["year"] = this->year;
s["track"] = this->track;
s["disc"] = this->disc;
return s.dump();
}