Can now authneticate via Icarus. Next is to setup the Song view and test streaming.

This commit is contained in:
amazing-username
2019-05-27 14:48:20 -04:00
parent 55940deda1
commit 1962979271
18 changed files with 268 additions and 34 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using Xamarin.Forms;
namespace Mear.ViewModels
{
public class BaseViewModel : INotifyPropertyChanged
{
#region Fields
#region INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
#endregion
#endregion
}
}