Example #1
0
 public AlbumTrackVM(PlayableSong ps)
 {
     this.SongId   = ps.Song.SongId.ToString();
     this.Name     = ps.Song.PublicSong?.Name;
     this.Duration = ps.Song.Video?.Duration;
     this.Position = ps.Position;
 }
Example #2
0
 public PlayableSongVM(PlayableSong sp) : this(sp.Song, sp.Position)
 {
 }