16 lines
309 B
C#
16 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Aurora.Frontend.Views.Party
|
|
{
|
|
public partial class PartyView : ContentView
|
|
{
|
|
public PartyView()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = new PartyViewModel();
|
|
}
|
|
}
|
|
}
|