#ifndef SONG_H_ #define SONG_H_ #include namespace Models { struct Song { int id; std::string title; std::string artist; std::string album; std::string genre; int year; int duration; int track; std::string data; std::string songPath; }; } #endif