20 lines
230 B
C#
20 lines
230 B
C#
using MyDiplom.ViewModels;
|
|
|
|
namespace MyDiplom
|
|
{
|
|
public partial class MainPage : ContentPage
|
|
{
|
|
int count = 0;
|
|
|
|
public MainPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.BindingContext = new UserViewModels();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|