Files
icarus_dm/include/Models/Song.h
T

25 lines
351 B
C++

#ifndef SONG_H_
#define SONG_H_
#include<string>
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