Files
icarus/Libs/include/models.h
T
2019-08-11 23:24:23 -04:00

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