mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
19 lines
415 B
C#
19 lines
415 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using MicaSetup.Controls;
|
|
using MicaSetup.Design.Controls;
|
|
using System.Linq;
|
|
|
|
namespace MicaSetup.ViewModels;
|
|
|
|
public partial class ShellViewModel : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private string route = null!;
|
|
|
|
public ShellViewModel()
|
|
{
|
|
Routing.RegisterRoute();
|
|
Route = ShellPageSetting.PageDict.FirstOrDefault().Key;
|
|
}
|
|
}
|