16 lines
313 B
C#
Raw Normal View History

2019-05-19 20:21:54 -04:00
using System;
using System.Collections.Generic;
using Xamarin.Forms;
2019-07-05 14:17:09 -04:00
namespace Aurora.Design.Components.MediaPlayer
2019-05-19 20:21:54 -04:00
{
public partial class Player : ContentView
{
public Player()
{
BindingContext = new PlayerViewModel();
2019-05-19 20:21:54 -04:00
InitializeComponent();
}
}
}