Initial commit of IcarusDownloadManager

This commit is contained in:
amazing-username
2019-03-17 17:05:27 -04:00
commit 9dcf70b157
12 changed files with 306 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#include"Song.h"
namespace Models
{
}
+25
View File
@@ -0,0 +1,25 @@
#ifndef SONG_H_
#define SONG_H_
#include<string>
#include<nlohmann/json.hpp>
using json = nlohmann::json;
namespace Models
{
struct Song
{
int id;
std::string title;
std::string artist;
std::string album;
std::string genre;
int year;
int duration;
char* songData;
};
}
#endif