mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-11 09:01:08 +00:00
10 lines
226 B
C#
10 lines
226 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ryujinx.Ava.UI.ViewModels
|
|
{
|
|
public partial class UserProfileImageSelectorViewModel : BaseModel
|
|
{
|
|
[ObservableProperty] private bool _firmwareFound;
|
|
}
|
|
}
|