17 lines
		
	
	
		
			310 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			310 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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();
 | |
|         }
 | |
|     }
 | |
| }
 |