mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-29 10:09:49 +08:00
16 lines
293 B
C#
16 lines
293 B
C#
using MicaSetup.ViewModels;
|
|
using System.Windows.Controls;
|
|
|
|
namespace MicaSetup.Views;
|
|
|
|
public partial class ShellPage : UserControl
|
|
{
|
|
public ShellViewModel ViewModel { get; }
|
|
|
|
public ShellPage()
|
|
{
|
|
DataContext = ViewModel = new();
|
|
InitializeComponent();
|
|
}
|
|
}
|