mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-27 10:15:50 +08:00
12 lines
260 B
C#
12 lines
260 B
C#
using BetterGenshinImpact.ViewModel.Pages;
|
|
|
|
namespace BetterGenshinImpact.View.Pages;
|
|
|
|
public partial class TaskGroupPage
|
|
{
|
|
public TaskGroupPage(TaskGroupPageViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
DataContext = viewModel;
|
|
}
|
|
} |