Add initial project structure and configuration files for Marechai.App

This commit is contained in:
2025-11-14 01:50:56 +00:00
parent f85dc22bf6
commit cf24356030
50 changed files with 1875 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.UI.Xaml.Controls;
using Uno.Extensions.Hosting;
namespace Marechai.App.Presentation;
public sealed partial class Shell : UserControl, IContentControlProvider
{
public Shell()
{
this.InitializeComponent();
}
public ContentControl ContentControl => Splash;
}