forked from piaocbn2j/MTMusic
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
380 B
21 lines
380 B
class Song {
|
|
String pic;
|
|
String artistPic;
|
|
String title;
|
|
String artist;
|
|
String musicurl;
|
|
int id;
|
|
bool likes;
|
|
bool collection;
|
|
|
|
Song(
|
|
{required this.pic,
|
|
required this.artistPic,
|
|
required this.title,
|
|
required this.artist,
|
|
required this.musicurl,
|
|
required this.id,
|
|
required this.likes,
|
|
required this.collection});
|
|
}
|