using System; using System.Collections.Generic; using Xamarin.Forms; namespace Aurora.Frontend.Views.Songs { public partial class SongsView : ContentPage { public SongsView() { InitializeComponent(); BindingContext = new SongsViewModel(); } } }