24 lines
303 B
C
24 lines
303 B
C
#ifndef MODELS_H_
|
|
#define MODELS_H_
|
|
|
|
struct Song
|
|
{
|
|
int Id;
|
|
char Title[1024];
|
|
char Artist[1024];
|
|
char Album[1024];
|
|
char Genre[1024];
|
|
int Year;
|
|
int Duration;
|
|
char SongPath[1024];
|
|
};
|
|
|
|
struct Cover
|
|
{
|
|
int Id;
|
|
char SongTitle[1024];
|
|
char ImagePath[1024];
|
|
};
|
|
|
|
#endif
|