Reorganize project structure.

This commit is contained in:
2025-11-15 02:46:53 +00:00
parent 3e4677b084
commit 5d249f435e
25 changed files with 0 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;
}