MobApp/Views/AboutPage.xaml.cs

15 lines
263 B
C#
Raw Permalink Normal View History

2025-03-13 11:23:08 +03:00
using System;
using System.ComponentModel;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace MobApp.Views
{
public partial class AboutPage : ContentPage
{
public AboutPage()
{
InitializeComponent();
}
}
}