misc: chore: Rename UserSelectorDialog to ProfileSelectorDialog

This commit is contained in:
Evan Husted
2025-02-11 20:50:06 -06:00
parent 06d34a5992
commit d3f84a1305
4 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
using CommunityToolkit.Mvvm.ComponentModel;
using Ryujinx.HLE.HOS.Services.Account.Acc;
using System.Collections.ObjectModel;
namespace Ryujinx.Ava.UI.ViewModels
{
public partial class ProfileSelectorDialogViewModel : BaseModel
{
[ObservableProperty] private UserId _selectedUserId;
[ObservableProperty] private ObservableCollection<BaseModel> _profiles = [];
}
}