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.
13 lines
374 B
13 lines
374 B
class Song {
|
|
final String pic;
|
|
final String artistPic;
|
|
final String title;
|
|
final String artist;
|
|
final String musicurl;
|
|
final int id;
|
|
final bool likes;
|
|
final 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});
|
|
}
|