And now it builds and runs

This commit is contained in:
watsonb8
2019-05-19 20:25:31 -04:00
parent 4b7c146041
commit 65d56a838c
2 changed files with 11 additions and 11 deletions

View File

@ -7,22 +7,22 @@ namespace Aurora.Frontend.Views.Songs
public class SongsViewModel : BaseViewModel
{
#region Fields
private ObservableCollection<Song> _songsList;
private Song _selectedSong;
private ObservableCollection<BaseSong> _songsList;
private BaseSong _selectedSong;
#endregion Fields
#region Constructor
public SongsViewModel()
{
_songsList = new ObservableCollection<Song>();
_songsList = new ObservableCollection<BaseSong>();
Initialize();
}
#endregion Constructor
#region Properties
public ObservableCollection<Song> SongsList
public ObservableCollection<BaseSong> SongsList
{
get { return _songsList; }
set
@ -35,7 +35,7 @@ namespace Aurora.Frontend.Views.Songs
}
}
public Song SelectedSong
public BaseSong SelectedSong
{
get { return _selectedSong; }
set