27 lines
301 B
C++
27 lines
301 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
|