mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-15 00:01:46 +01:00
20 lines
389 B
C#
20 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace Borepin.Page
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class TestPage : ContentPage
|
|
{
|
|
public TestPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |