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; }
public PlayableSongVM(PlayableSong sp) : this(sp.Song, sp.Position) { }