mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-22 14:10:19 +00:00
18 lines
No EOL
373 B
C#
18 lines
No EOL
373 B
C#
namespace Ryujinx.Ava.UI.ViewModels
|
|
{
|
|
internal class UserProfileImageSelectorViewModel : BaseModel
|
|
{
|
|
private bool _firmwareFound;
|
|
|
|
public bool FirmwareFound
|
|
{
|
|
get => _firmwareFound;
|
|
|
|
set
|
|
{
|
|
_firmwareFound = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
} |