Adding c++ to the mix

This commit is contained in:
kdeng00
2019-09-26 22:02:09 -04:00
parent 6b68afad9b
commit 356f75d0c5
9 changed files with 299 additions and 128 deletions
+25
View File
@@ -0,0 +1,25 @@
//
// Created by brahmix on 9/26/19.
//
#ifndef MEAR_SONG_H
#define MEAR_SONG_H
#include <string>
namespace model {
struct Song
{
int id;
std::string title;
std::string artist;
std::string album;
std::string genre;
int duration;
int year;
};
}
#endif //MEAR_SONG_H