mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
20 lines
354 B
Text
20 lines
354 B
Text
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
using Xamarin.Forms;
|
||
|
using Xamarin.Forms.Xaml;
|
||
|
|
||
|
namespace TINK.View.Info
|
||
|
{
|
||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||
|
public partial class InfoPage : ContentPage
|
||
|
{
|
||
|
public InfoPage ()
|
||
|
{
|
||
|
InitializeComponent ();
|
||
|
}
|
||
|
}
|
||
|
}
|