mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-11 15:24:02 +08:00
16 lines
305 B
C#
16 lines
305 B
C#
using MicaSetup.ViewModels;
|
|
using System.Windows.Controls;
|
|
|
|
namespace MicaSetup.Views;
|
|
|
|
public partial class UninstallPage : UserControl
|
|
{
|
|
public UninstallViewModel ViewModel { get; }
|
|
|
|
public UninstallPage()
|
|
{
|
|
DataContext = ViewModel = new();
|
|
InitializeComponent();
|
|
}
|
|
}
|