mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-05 07:27:56 +00:00
21 lines
407 B
C#
21 lines
407 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 qController.Pages
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class RootPageDetail : ContentPage
|
|
{
|
|
public RootPageDetail()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|