public void CopySong(MySong song)
 {
     Name    = song.Name;
     URL     = song.URL;
     Artist  = song.Artist.Name;
     Image   = song.Image;
     Lyric   = song.Lyric;
     bool_on = song.bool_on;
     Stream  = song.Stream;
 }
Exemple #2
0
 public void CopyTo(MySong so)
 {
     _name       = so.Name;
     Artist.Name = so.Artist.Name;
     this.Album  = new MyAlbum();
     Album.Name  = so.Album.Name;
     _image      = so.Image;
     Lyric       = so.Lyric;
     Stream      = so.Stream;
 }
 public DownloadSong(MySong song)
 {
     Path    = song.Path;
     Name    = song.Name;
     URL     = song.URL;
     Artist  = song.Artist.Name;
     Image   = song.Image;
     Lyric   = song.Lyric;
     bool_on = song.bool_on;
     Stream  = song.Stream;
 }
Exemple #4
0
 public MySong(MySong so)
 {
     Name        = so.Name;
     this.Artist = new MyArtist();
     Artist.Name = so.Artist.Name;
     this.Album  = new MyAlbum();
     Album.Name  = so.Album.Name;
     URL         = so.URL;
     Lyric       = so.Lyric;
     Image       = so.Image;
     Path        = so.Path;
     Stream      = so.Stream;
 }