16 lines
		
	
	
		
			313 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			313 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using Xamarin.Forms;
 | 
						|
 | 
						|
namespace Aurora.Design.Components.MediaPlayer
 | 
						|
{
 | 
						|
    public partial class Player : ContentView
 | 
						|
    {
 | 
						|
        public Player()
 | 
						|
        {
 | 
						|
            BindingContext = new PlayerViewModel();
 | 
						|
            InitializeComponent();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |