2019-05-27 11:23:14 -05:00
|
|
|
|
using System;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
2019-07-05 14:17:09 -04:00
|
|
|
|
namespace Aurora.Design.Views.Party
|
2019-05-27 11:23:14 -05:00
|
|
|
|
{
|
|
|
|
|
public partial class PartyView : ContentView
|
|
|
|
|
{
|
|
|
|
|
public PartyView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
BindingContext = new PartyViewModel();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|