15 lines
263 B
C#
15 lines
263 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace MobApp.Views
|
|
{
|
|
public partial class AboutPage : ContentPage
|
|
{
|
|
public AboutPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |